

function showStatus(sMsg) {
window.status = sMsg ;
return true ;
}

function zoomwindows(fName,wName,wProp)
{
var scrWidth  = window.screen.width;
var scrHeight = window.screen.height;
window.title="culo";
//var wf = "copyhistory=no,directories=no,location=no,menubar=no,resizable=no,scrollbars=yes,status=yes,toolbar=no";
var wf = "copyhistory=no,directories=no,height=270,location=no,menubar=no,resizable=no,scrollbars=yes,status=yes,toolbar=no,width=360";
var win1;
win1=window.open(fName,wName,wf);
win1.moveTo(((scrWidth/2)-(320)),((scrHeight/2)-(240))); 
//win1.moveTo(((scrWidth/2)-( window.screen.width)),((scrHeight/2)-(window.screen.height))); 
win1.focus()

}