if (top.frames.length != 0)
  top.location = self.document.location;

  self.moveTo(0,0);
  self.resizeTo(screen.availWidth,screen.availHeight);
 
function PopUpinDetail(url){
var iMyWidth;
var iMyHeight;

iMyWidth = (window.screen.width/2) - (325 + 10)//half the screen width minus half the new window width (plus 5 pixel borders).
iMyHeight = (window.screen.height/2) - (225 + 50)//half the screen height minus half the new window height (plus title and status bars).
	var win2 = window.open(url,"Window2","status,height=450,width=650,resizable=no,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=yes")
}


function myfocus() {
	document.form1.email.reset();
	document.form1.email.focus(); 
}

function rolloverImage(cellName, imageName) 
    {
     if(document.images) 
       {
        document[cellName].src = imageName;
       }
}


function validate_email() {

if (document.form1.email.value == "" || document.form1.email.value.indexOf ('@', 0) == -1 || document.form1.email.value.indexOf ('.', 0) == -1 || document.form1.email.value.length < 8) 
	{
		alert('This is not a valid email address.\n\r           Please try again.');
		document.form1.email.focus();
		return;
	}
	document.form1.submit();
}






