// JavaScript Document

/* ***********************************************
this function is available to all pages to use in order to open up the Product Mailing List Signup form
formPath is the complete path to the 
************************************************ */
function openForm(formPath,urlVariables) {
	if (urlVariables==null) {
		urlVariables = "";
	}	
	fullUrl = formPath + '?' + urlVariables;
	//alert(fullUrl);
	newWin = window.open(fullUrl,"formWindow","status,menubar,WIDTH=700,HEIGHT=500,resizable,scrollbars,left=100,screenX=100");
	newWin.focus();
}