﻿
function PopWindow(FilePath)
{
var WindowOpen = window.open(FilePath,'iMaster','width=715,height=610,dialog=yes,menubar=no,scrollbars=no,toolbar=no,location=no,directories=no,resizable=no,modal=yes,top=0,left=0');
try{
var obj = WindowOpen.name;
//WindowOpen.close();
//alert("Popup blocker NOT detected");
}
catch(e)
{
alert('popup blocked');
}
}

