
function PopUpWindows(url)
{
	var myWindow = window.open(url,'_blank','height =600,width=600,status= no,resizable = no,scrollbars = yes, toolbar=no ');
	myWindow.focus();
}
function makeRemote(url,winname,feature1,feature2) {
  var remote = null;
  
  feature3 = "WIDTH="+feature1+",HEIGHT="+feature2+",scrollbars=yes,screenX=25,screenY=25,left=25,top=25,resizable";
  remote = window.open(url,winname,feature3);
  if(remote.opener == null) remote.opener = window;
  remote.resizeTo(feature1,feature2)
  remote.focus();
}

function noPostBack(sNewFormAction)
{
    document.forms[0].action = sNewFormAction;
    document.forms[0].__VIEWSTATE.name = 'NOVIEWSTATE';
}




