// JavaScript Document
function newsWindow() {
	sWidth = screen.availWidth;
	sHeight = screen.availHeight;
	
	winWidth = 400;
	winHeight = 300;
	
	sLeft = (sWidth - winWidth) / 2;
	sTop = (sHeight - winHeight) / 2;
	
	txtemail = document.newsLetter.txtemail.value;
	window.open("emailValidation.php?txtemail=" + txtemail , "acupuncture", "width=" + winWidth + ",height=" + winHeight + ",top=" + sTop + ",left=" + sLeft + ",toolbar=0,menubar=0,status=0,scrollbars=0,resizable=0");
	return;
}
 function closeWindow() {
	parent.window.opener.window.focus();
	parent.window.close();
}
function newsWindowIndex() {
	sWidth = screen.availWidth;
	sHeight = screen.availHeight;
	
	winWidth = 400;
	winHeight = 300;
	
	sLeft = (sWidth - winWidth) / 2;
	sTop = (sHeight - winHeight) / 2;
	
	txtemail = document.newsLetter.txtemail.value;
	window.open("html/emailValidation.php?txtemail=" + txtemail , "Acupuncture", "width=" + winWidth + ",height=" + winHeight + ",top=" + sTop + ",left=" + sLeft + ",toolbar=0,menubar=0,status=0,scrollbars=0,resizable=0");
	return;
}