// JavaScript Document

//open up another window
function load(thisFile,thisWidth,thisHeight,resizeThis) {
	var load = window.open(thisFile,'','scrollbars=no,menubar=no,height='+thisHeight+',width='+thisWidth+',resizable='+resizeThis+',toolbar=no,location=no,status=no');
}

//swap out big image function 
/*
function imageSwapper(imageFile,imageName,imageDir) { 
	var imgFile = imageDir + imageFile + ".jpg";
	var imagePath = top.location.href; 
	imagePath = imagePath.substring(0,imagePath.lastIndexOf("/")); 
	alert("imagePath="+imagePath+"/i/"+imgFile);
	document["swapProduct"].src = imagePath+"/i/"+imageDir+imgFile; 
} 
*/	
