var bIsMSIE = (navigator.userAgent.indexOf('MSIE') != -1) ? true : false;
var bIsMSIEv7 = (navigator.userAgent.indexOf('MSIE 7.') != -1) ? true : false;
///////////////////////////////////////////////////////////////////////////////////////////////
function LoadCSS() {
	if (!(bIsMSIE && !bIsMSIEv7)) {
		document.write('<link rel="stylesheet" href="themes/Main/css/style-shadow.css" type="text/css" />');
	}
	if (bIsMSIE) {
		document.write('<link rel="stylesheet" href="themes/Main/css/footer-ie.css" type="text/css" />');
	} else {
		document.write('<link rel="stylesheet" href="themes/Main/css/footer.css" type="text/css" />');
	}
	sStyleScript = 'style.css';
	if (screen.width > 1280) sStyleScript = 'style-hr.css';
	document.write('<link rel="stylesheet" href="themes/Main/css/' + sStyleScript + '" type="text/css" />');
}
///////////////////////////////////////////////////////////////////////////////////////////////
function WinOpen(sUrl, sName, sWidth, sHeight, sScroll, sTop, sLeft, sStatus){
	if(!sStatus) sStatus = 'no';
	if(!sScroll) sScroll = 'no';
	if(!sName) sName = 'mywin';
	if(!sWidth) sWidth = '400';
	if(!sHeight) sHeight = '200';
	if(!sTop) sTop = (screen.height / 2) - (sHeight / 2);
	if(!sLeft) sLeft = (screen.width / 2) - (sWidth / 2);
	sProperties = 'history=no,toolbar=0,location=0,directories=0,scrollbars='+sScroll+',status='+sStatus+',menubar=0,width='+sWidth+',height='+sHeight+',top='+sTop+',left='+sLeft+'';
	window.open(sUrl, sName, sProperties) ;
}
///////////////////////////////////////////////////////////////////////////////////////////////