function validForm(passForm){
	if(passForm.name.value == ""){
		//if the username is not entered, send the following message to the user
		alert("Please enter your name!")
		/*place the cursor in the username field*/
		passForm.name.focus()
		return false
	}
	if(passForm.type.value == ""){
		//if the username is not entered, send the following message to the user
		alert("Please enter type of person!")
		/*place the cursor in the username field*/
		passForm.type.focus()
		return false
	}
	if(passForm.phone.value == ""){
		//if the username is not entered, send the following message to the user
		alert("Please enter your phone contact!")
		/*place the cursor in the username field*/
		passForm.phone.focus()
		return false
	}
	if(passForm.email.value == ""){
		//if the username is not entered, send the following message to the user
		alert("Please enter your email contact!")
		/*place the cursor in the username field*/
		passForm.email.focus()
		return false
	}
	if(passForm.book_name.value == ""){
		//if the username is not entered, send the following message to the user
		alert("Please enter the name of book!")
		/*place the cursor in the username field*/
		passForm.book_name.focus()
		return false
	}
	if(passForm.author.value == ""){
		//if the username is not entered, send the following message to the user
		alert("Please enter the name of author !")
		/*place the cursor in the username field*/
		passForm.author.focus()
		return false
	}
	if(passForm.date.value == ""){
		//if the username is not entered, send the following message to the user
		alert("Please enter the date of book published!")
		/*place the cursor in the username field*/
		passForm.date.focus()
		return false
	}
	if(passForm.publisher.value == ""){
		//if the username is not entered, send the following message to the user
		alert("Please enter the publisher of the book!")
		/*place the cursor in the username field*/
		passForm.publisher.focus()
		return false
	}
	if(passForm.justification.value == ""){
		//if the username is not entered, send the following message to the user
		alert("Please enter justification!")
		/*place the cursor in the username field*/
		passForm.justification.focus()
		return false
	}
		if(passForm.theme.value == ""){
		//if the username is not entered, send the following message to the user
		alert("Please enter proposed related conversations theme!")
		/*place the cursor in the username field*/
		passForm.theme.focus()
		return false
	}

	
	return true
}
function thisWinSize()  
{
      var sw=window.screen.width;
      var sh=window.screen.height;
	  window.resizeTo(sw*.60,sh*.60);
      window.moveTo(sw*.036, sh*.19); 
     
}