    function openNewWindow(targeturl) {
    var fullScreenWindow = window.open(targeturl, 'someName', 'left=0,right=0,resizable');
    fullScreenWindow.moveTo(0,0);
    fullScreenWindow.resizeTo(screen.availWidth,screen.availHeight);
    }

function confirmDel(url, message)
{
 var where_to= confirm(message);
 if (where_to== true)
 {
   window.location=url;
 }
 else
 {
  window.location="#";
  }
}

function alerter( text)
{
	alert( text);
}

function op(url,wid,hei,ty){
	settings="toolbar=no,location=no,directories=no,"+"status=no,menubar=no,scrollbars=no,"+"resizable=no,width="+wid+",height="+hei;
	window.open(url,ty,settings);
	}