function linkbox(sitechoice) 
{
	destination = sitechoice[sitechoice.selectedIndex].value;
	if (destination == "null")
	{
		return true;
	}
	
	window.open(destination, '_self');
	return true;
}
	

function textClear (input) {
	if ( input.value == input.defaultValue ) {
		input.value = "";
	}
}

function textRestore (input) {
	if ( input.value == "" ) {
		input.value = input.defaultValue;
	}
}

function externallinkbox(sitechoice) 
	{destination = sitechoice[sitechoice.selectedIndex].value;
	if (destination == "null")
		{return true;}
	window.open(destination, '_self');
	return true;}	

function load(page,args) {


var load = window.open(page,"pop",args);
load.focus();
	
}

function DoSubmit(form){
    var winName = form.name + "_win";
    window.open("", winName, "WIDTH=300,HEIGHT=300,scrollbars=1");    
    form.target = winName;
    form.submit();
}