function myPopUp(strUrl, strName, strFeatures)
{
 var win = window.open(strUrl, strName, strFeatures);
}

function openWindow(theURL,winName,features)
{
 window.open(theURL,winName,features);
}
