function showProjectDetails (projectURL,imgWidth,imgHeight) 
{
	var attributes;
	var winX;
	var winY;
	if (navigator.appName == "Netscape") 
	{
		winX = (screen.availWidth - 181)*.5;
		winY = (screen.availHeight - 230)*.5;
		attributes = "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,height="+imgHeight+",width="+imgWidth+",left=";
		myWindow = open(projectURL,"subjectWIN",attributes);
	}
	else 
	{
		attributes = "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,height="+imgHeight+",width="+imgWidth+",left=0, top=0";
		myWindow = open(projectURL,"subjectWIN",attributes);
	}
	if (myWindow.opener == null)
	{
		myWindow.opener = self;
	}
}

function addInfoForm()
{
	f = document.aInfoForm;
	
	if (f.s_email.value=='')
	{
			alert("Please fill your email");
			f.s_email.focus();
			return false;
	}
}