// ### is this IE ?
var IE = document.all?true:false;

document.write('<LINK REL="stylesheet" TYPE="text/css" HREF="css/f_ie.css">');

// ### opens popup windows ###
var sx=screen.availWidth;
var sy=screen.availHeight;
function openPopup(nurl, name, wx, hy) {
	wx=wx-4;
	hy=hy-4;
	var popWin = window.open ( nurl, name,'width='+wx+',height='+hy+',toolbar=0, menubar=0, scrollbars=0, resizable=yes,location=no,directories=no, status=yes');
	// var popWin = window.open( nurl , name,  config='height='+hy+', width='+wx+', toolbar=0, menubar=0, scrollbars=0, resizable=0, location=0, directories=0, status=0');
	popWin.moveTo( Math.ceil(sx/2-wx/2), Math.ceil(sy/2-hy/2));
	popWin.focus();
};