﻿// IE CSS fixes

document.write('<!--[if IE]>');
document.write('<style type="text/css">');
document.write('.navstat, a.navstat:link, a.navstat:visited, a.navstat:active, a.navstat:focus, .navover, a.navover:link, a.navover:visited, a.navover:active, a.navover:hover, a.navover:focus 	{margin-top: 2px;}');
document.write('.dot				{margin-top: 7px;}');
document.write('</style>');
document.write('<![endif]-->');


// Pop-Up Window script

function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=no,resizable=no'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

