<!--


// Fullscreen Window

function fullScreen() {
};


// Centers a Pop Up Window

function centre(width,height) {
  if (parseInt(navigator.appVersion) >= 4) {
	  window.moveTo((screen.availWidth/2)-(width/2-5),(screen.availHeight/2)-(height/2-5));
	}
};


// Pop Up Window Function

function popUp(url,width,height) {
  vv=window.open(url,'popup','width='+ width +',height='+ height +',directories=no,location=no,menubar=no,resizable=no,scrollbars=no,status=no,titlebar=no,toolbar=no');
  vv.focus(); 
};





//-->
