function goImage(subID,imageNum)
	{
	thisaction = 'image.cfm?sID='+subID+'&iID='+imageNum;
	document.pagedata.action = thisaction;
	//alert(document.pagedata.action);
	document.pagedata.submit();
	}
function addToCart(page)
	{
	thisaction = page;
	document.addToCartForm.action = thisaction;
	//alert(document.addToCartForm.action);
	document.addToCartForm.submit();
	}
function go(thispage)
	{
	document.pagedata.action = thispage;
	document.pagedata.submit();
	return;
	}
function goPortfolio(sID)
	{
	thisaction = 'image.cfm?sID='+sID+'&n=1';
	//alert(thisaction);
	document.pagedata.action = thisaction;
	document.pagedata.submit();
	}
function netscapeIsChallenged() {
	if (document.layers) {
	if (innerWidth != origWidth || innerHeight != origHeight){
		self.location.reload();
		self.location.href = self.location.href;
		};
	}
	}
window.onResize = netscapeIsChallenged;