/* basic functions */




// open a popup with the specified URL
function popUp(URL) {
	URL = "templates/" + URL;
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=400,height=365,left = 415,top = 337');");
}

// tablerow color-swapper
function changeColor(id, previewId){
	var newBg = '#b6c0b1';
	var newFc = '#ffffff';
	var oldBg = id.style.backgroundColor;
	var oldFc = id.style.fontColor;
	
 	 id.style.backgroundColor =  newBg;
	 id.style.fontColor = newFc;
	 document.getElementById(previewId).style.display = 'block';
	 id.onmouseout = function(){
	 	id.style.backgroundColor = oldBg;
		id.style.fontColor = oldFc;
		document.getElementById(previewId).style.display = 'none';
	 }
 }


