//Created for 'popup' window with toolbar,scrollbars, status, menubar. 
function SpecialPopUp(URL,width,height) {
  window.open(URL, 'popup', 'toolbar=1,scrollbars=1,location=1,status=1,menubar=1,resizable=1,width=' + width + ',height=' + height + ',left = 0,top = 0');
return false;
}