/*
	Support for Opera Browser added (4/Sep/2003, H. Pralow)
*/

if ((typeof(document.ppzCore) == 'undefined') || (!(document.ppzCore)))	{
	if (typeof(self.ppz_Core) == 'undefined')	{
		self.location.reload();
	} else
		document.ppzCore = new ppz_Core();
}

if (typeof(document.ppzCore.pathprefix) == 'undefined')	{
	self.location.reload();
}

var ppz_CSS_stylesheet = "";

if (document.ppzCore.app.platform == "win")	{
	if ((document.ppzCore.app.ie5) || (document.ppzCore.app.ie4))	{
		ppz_CSS_stylesheet = document.ppzCore.pathprefix + "styles/pc_ie.css";
	} else	{
		if ((document.ppzCore.app.ns6) || (document.ppzCore.app.op5))	{
				ppz_CSS_stylesheet = document.ppzCore.pathprefix + "styles/pc_ns6.css"; }
			else ppz_CSS_stylesheet = document.ppzCore.pathprefix + "styles/pc_ns.css";
	}
} else if (document.ppzCore.app.platform == "mac")	{
	if ((document.ppzCore.app.ie5) || (document.ppzCore.app.ie4))	{
		ppz_CSS_stylesheet = document.ppzCore.pathprefix + "styles/mac_ie.css";
	} else	{
		if ((document.ppzCore.app.ns6) || (document.ppzCore.app.op5))	{
				ppz_CSS_stylesheet = document.ppzCore.pathprefix + "styles/mac_ns6.css"; }
			else ppz_CSS_stylesheet = document.ppzCore.pathprefix + "styles/mac_ns.css";
	}
}


if (ppz_CSS_stylesheet != '')	{
	document.write('<link rel="STYLESHEET" type="text/css" href="' + ppz_CSS_stylesheet +'">');
}

ppz_CSS_stylesheet = "";