var d=document;
var flag=false;

if (d.images) {
	About_Out = new Image();      About_Out.src = "toy_shop/about.gif";
	About_Over = new Image();     About_Over.src = "toy_shop/about_over.gif";
	Location_Out = new Image();   Location_Out.src = "toy_shop/location.gif";
	Location_Over = new Image();  Location_Over.src = "toy_shop/location_over.gif";
	Range_Out = new Image();      Range_Out.src = "toy_shop/toy_range.gif";
	Range_Over = new Image();     Range_Over.src = "toy_shop/toy_range_over.gif";
	Contact_Out = new Image();    Contact_Out.src = "toy_shop/contact.gif";
	Contact_Over = new Image();   Contact_Over.src = "toy_shop/contact_over.gif";
	flag=true;
}
function rollOver(imgName) {
	if (d.images && (flag == true)) {
		d[imgName].src = eval(imgName + "_Over.src");
	}
}
function rollOut(imgName) {
	if (d.images && (flag == true)) {
		d[imgName].src = eval(imgName + "_Out.src");
	}
}

function openWin(memberFile, winWidth, winHeight){
	myURL = 'display.htm?' + memberFile;
	window.open(myURL,"Member",'toolbar=0,width=' + winWidth + ',height=' + winHeight + ',status=0,scrollbars=1,resizable=1,menubar=0');
}