// JavaScript Document

function showWindow(url,windowname,width,height){
  if(width == 800 && height == 600){
    width=screen.width
    height=screen.height-40
    l = 0
    t = 0
  }else{
    l=(screen.width-width)/2;
    t=((screen.height-height)/2)-20;
  }

	open(url,windowname,"scrollbars=yes, resizable=yes,menubar=no, status, top="+t+",left="+l+",width="+width+",height="+height+" ").focus();
  }
///////////////////////////////////////////////////////
	function closeWindow(url){
		window.opener.location.href = url;
 //     alert("Status has been printed")
      	window.close();
	}
///////////////////////////////////////////////////////
 function submitForm(url, name,width,height){
	
//	void showWindow(url, name, width,height);	
	document.forms[1].action = url;
	document.forms[1].submit();
//	window.document.getElementById(name).action=url;
//	window.document.getElementById(name).target ="_Top";
//	window.document.getElementById(name).submit();
//JavaScript:showWindow('Booking.php?Request=Select','Abotu_Palma_History',770,500)
  }
///////////////////////////////////////////////////////
	function uniqueCheckbox(){
	 var myArray = new Array( );
     
		
	}
/////////////////////////////////////////////////////////////


