// ***************************************
// last modified by <kpe>sang noh 01.17.02
// NohS@kpe.com
// ***************************************

// general rollover function
function rollover(imgSwap,imgName) {
	imgSwap = eval(imgSwap + ".src");
	document [imgName].src = imgSwap;
	}


// pop-up window for external sites
function popSite(url) {
	if (window.focus()) {
		self.focus();
		}
	window.open(url,"new","resizable=yes,toolbar=yes,location=yes,width=650,height=400,directories=no,status=yes,scroll=yes,scrollbars=yes,menubar=yes");
	}
	
function popVirtual(url) {
	if (window.focus()) {
		self.focus();
		}
	window.open(url,"new","resizable=yes,toolbar=yes,location=yes,width=745,height=430,directories=no,status=yes,scroll=yes,scrollbars=yes,menubar=yes");
	}
	
	
// pop-up window for Thunderbrid Sweepstakes

function popUp(URL) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=317,height=300');");
	}
