﻿// JScript File

function openPopUp(url,w,h)
{
	var lt=(screen.width-w)/2;
	var tp=(screen.height-h)/2;
 if (navigator.platform.toLowerCase().indexOf("mac")==0){
  LastWin=window.open(url,'wPopUp','width='+w+',height='+h+',left='+lt+',top='+tp+',scrollbars=yes,resizable=no');
 }
 else{
  LastWin=window.open(url,'wPopUp','width='+w+',height='+h+',left='+lt+',top='+tp+',scrollbars=yes,resizable=no');
  LastWin.focus()
 }
}


		

