function openOMWin(url,width,height){
var winName = "OMWin"+ width + height ;
var winObj = window.open(url,winName,'height='+height+',width='+width+',scrollbars=no,resizable=no,toolbar=no,status=no');
if (winObj ==null){
alert('Please Switch off the Pop-up Blocker of your browser and Retry'); 
}
}


function openOMWinScroll(url,width,height){
var winName = "OMWin"+ width + height ;
var winObj = window.open(url,winName,'height='+height+',width='+width+',scrollbars=yes,resizable=no,toolbar=no,status=no');
if (winObj ==null){
alert('Please Switch off the Pop-up Blocker of your browser and Retry'); 
}

}
