/*New windows*/
function newSiteWindow(url) {
siteWindow = window.open(url,"siteWin", "toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=1000,height=500");
}
function newPartWindow(url) {
partWindow = window.open(url,"partWin", "toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=475,height=515");
}
function newPDFWindow(url) {
partWindow = window.open(url,"PDFWin", "toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=600,height=350");
}
function confirmlink(linkurl,brandname,product) {
	if(confirm("You are being transferred to\n" + linkurl + "\n\n" + brandname + " is brand of CST.\n\nDo you wish to continue for additional information on " + product + "?"))
		newSiteWindow(linkurl);
}

function mytest() {
	lightbox.prototype.deactivate();
	window.open('http://www.systronauto.com/products/microgyro');
}