// <!--
// This file contains common the javascript necessary for all pages of the site.

// Begin Frame Busting

if (window != top) top.location.href = location.href;
// End Frame Busting



// Begin Presentation pop-up window
function presentation() {
	win = window.open ("presentation.html", "presentation", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=600,height=400");
}

// End Presentation pop-up window



// Begin News pop-up window
function news_window(urlfilename) {
	doc = "http://www.yulex.com/news/news_window.html?" + urlfilename;
	win = window.open (doc, "news_window", "toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,width=700,height=475");

}

// End News pop-up window

// Begin Glen's Pop Up Window
/*
function news_window2(page)
	{
		var page = page;
		window.open(page, 'news_window', 'height=500, width=600, resizable=yes, scrollbars=yes');
	}
*/

function news_window2(urlfilename) {
	doc = "http://www.yulex.com/news/return.php?" + urlfilename;
	win = window.open (doc, "news_window", "toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,width=700,height=400");

}




// Begin Products pop-up window
function products_window(urlfilename) {
	doc = "http://www.yulex.com/products/products_window.html?" + urlfilename;
	win = window.open (doc, "products_window", "toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,width=700,height=400");

}

// End Products pop-up window




// Query Browser for Netscape

function xxx() {
if (bName == "Netscape"){
var sDocHost = "";
sDocHost = document.URL;
document.location = sDocHost;
}

}
//-->


