

function CheckBlur(textfield, reptext) 
{if(textfield.value.length <= 0) textfield.value = reptext; }
function  CheckFocus(textfield, reptext) 
{if(textfield.value.toLowerCase() == reptext.toLowerCase()) textfield.value = '';}

function CreateWindow(theurl, thewidth, theheight)
{
	
	
	//window.open(thehref, "somename", "width="+thewidth+", height="+theheight+", left="+event.x+" top="+event.y);
	window.open(theurl, 'booger', 'width = '+thewidth+', height ='+theheight);
}

