function OpenWind(varFile)
{
var isNS4 = !(document.layers == null);
var isIE4 = !(document.all    == null);

w_height=screen.height
w_width=screen.width
//alert(w_height);

if (isIE4) { 
w_adjust = w_height/100 * 13.6
w_height= w_height - w_adjust

}
w_width = w_width - 10
var varWind = window.open(varFile,"","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,left=0,top=0,height=360,width=516")
varWind.focus();
}

