// JavaScript Document
// Controll Window For E-mail Form
// Ken Hobbie 2008
function newWindow(webURL)
{
	var newWin = window.open(webURL,"new_window","scrollbars=1,width=600,height=650,left=100,top=25");newWin.focus();
}