function openWindow(page_name, win_name, resize, width, height)
{
	if(resize == true)
	{
		var win = window.open(page_name, win_name, "toolbar=no,location=no,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=" + width + ",height=" + height);
		win.focus();
	}
	else {
		var win = window.open(page_name, win_name, "toolbar=no,location=no,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=no,width=" + width + ",height=" + height);			
		win.focus();
	}
}
	
function hpNewsletterSubmit(submitButton, evt)
{
	// if it's Netscape...
	if(document.layers)
	{
		var btn = new String();
		btn = evt.target.toString();

		// check to see if the user clicked the Manage submit button
		if(btn.indexOf("subManage") > 0)
		{
/*			let it go; we don't need to interviene.
*/
		}
		// nope, clicked the Sign Up submit button
		else {
			submitButton.mlpost.value = "mlpostnew";
		}
	}
	// ok, it's not Netscape so assume IE
	else {
		// check to see if the user clicked the Manage submit button

		if(evt.srcElement == document.newsletters.subManage)
		{
/*			let it go; we don't need to interviene.
*/
		}
		// nope, clicked the Sign Up submit button
		else {
/*		
		indicate that this is a new user and pass their e-mail address
*/
			document.newsletters.mlpost.value = "mlpostnew";
		}
	}
}