// JavaScript Document
function ImgRoll(x){
	document.getElementById(x).className='imgRollOver';
}

function ImgReturn(x){
	document.getElementById(x).className='imgLink';
}

function ImgLaunch(x){
	var pageURL = x+'.htm';
	//alert(pageURL);
	window.open(pageURL,"_blank","toolbar=yes, location=yes, directories=no, status=no, menubar=yes, scrollbars=yes, resizable=yes, copyhistory=yes, width=800, height=1000");
}

function ShopImgLaunch(x){
	var pageURL = x+'.htm';
	//alert(pageURL);
	window.open(pageURL,"_blank","toolbar=yes, location=yes, directories=no, status=no, menubar=yes, scrollbars=yes, resizable=yes, copyhistory=yes, width=800, height=600");
}

