// JavaScript Document

// launch link in new window
function newwindow(newUrl) {
	window.open(newUrl);
}

// print this page
function printpage() {
	window.print();
}

// close popup 
function popclose() {
	self.close();
}

// clear template value on focus
function autoclear(thefield,thedefault) {
	if (thefield.value==thedefault) thefield.value = "";
}

