
// From /inc/asthetics.php

function mouseOver(mouseObject, newColor) {
	mouseObject.style.background=newColor
}

function mouseOut(mouseObject, newColor) {
	mouseObject.style.background=newColor
}

function loadPage(pageLink) {
	document.location = pageLink;
}


// From /prod_info.php

function openNewWindow(docLocation){
	docWindow = window.open(docLocation, "docWindow", "directories=no,height=470,width=630,hotkeys=no,location=no,menubar=no,personalbar=no,resizable=no,screenX=50,screenY=50,status=no,toolbar=no,scrollbars=yes,top="+((screen.height - 470) / 2)+",left="+((screen.width - 630) / 2));
	docWindow.focus();
}

function openRecommendWindow(){
	docWindow = window.open('', "recommendWindow", "directories=no,height=360,width=350,hotkeys=no,location=no,menubar=no,personalbar=no,resizable=no,screenX=50,screenY=50,status=no,toolbar=no,scrollbars=yes,top="+((screen.height - 360) / 2)+",left="+((screen.width - 350) / 2));
	docWindow.focus();
}

function openVTypeWindow(docLocation){
	docWindow = window.open("/popup.php?page=vtypes#"+docLocation, "docWindow", "directories=no,height=470,width=630,hotkeys=no,location=no,menubar=no,personalbar=no,resizable=no,screenX=50,screenY=50,status=no,toolbar=no,scrollbars=yes,top="+((screen.height - 470) / 2)+",left="+((screen.width - 630) / 2));
	docWindow.focus();
}

function openWhyBuyWindow(docLocation, docAnchor){
	docWindow = window.open("/popup.php?page="+docLocation+"#"+docAnchor, "docWindow", "directories=no,height=470,width=630,hotkeys=no,location=no,menubar=no,personalbar=no,resizable=no,screenX=50,screenY=50,status=no,toolbar=no,scrollbars=yes,top="+((screen.height - 470) / 2)+",left="+((screen.width - 630) / 2));
	docWindow.focus();
}
