



// Popup window code
function newAccaluePopup(url) {
popupWindow = window.open(url,'popUpWindow','height=504,width=814,left=10,top=10,resizable=no,scrollbars=no,toolbar=no,menubar=no,location=no,directories=no,status=no');
}

// Popup window code
function newWinPopup(url,w,h) {
popupWindow = window.open(url,'popUpWindow','height='+h+',width='+w+',left=10,top=10,resizable=no,scrollbars=no,toolbar=no,menubar=no,location=no,directories=no,status=no');
}