
var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=490,width=340');
	if (window.focus) {newwindow.focus()}
}

//Clear text Field
function clearText(thefield){
	if (thefield.defaultValue==thefield.value)
		thefield.value = ""
} 
