function winopen(URL)
{
var popUpSizeX=700;
var popUpSizeY=580;	
var popUpLocationX = screen.availWidth/2 - popUpSizeX/2;
var popUpLocationY = screen.availHeight/2 - popUpSizeY/2;
newWin = window.open("",'x','fullscreen=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0');
newWin.blur();
window.focus();
newWin.resizeTo(popUpSizeX,popUpSizeY);
newWin.moveTo(popUpLocationX,popUpLocationY + 50);
newWin.location=URL;
newWin.focus();
}
