/*
*	SCRIPT TO SELECT THE DEFAULT TEXT IN
*	TEXT BOX ON FIRST MOUSE CLICK
*	function SelectText(which)
*	which:: THE MOUSE HAS BEEN CLICKED INSIDE THIS ELEMENT
*/
function SelectText(which)
{
	var controlWithFocus = document.getElementById(which);
	if (!document.getElementById)
	return
	controlWithFocus.select();
}

// POPUP WINDOW
function openpopup(popurl, w, h, sizable, extra) {
	str = 'width='+(w+20)+',height='+(h+30);
	if ( sizable != true ) {
		str = str + ',scrollbars=no,resizable=no,status=no';
	} else {
		str = str + ',scrollbars=yes,resizable=yes,status=no' + ',' + extra;
	}
	window.open(popurl,'',str);
}
