function popup(whichHREF)
{
	window.open(whichHREF);
}

function openWindow(URL) {

	//for ns don't have spaces in options

	var options = "screenX=0,screenY=0,top=0,left=0,resizable=yes,scrollbars=yes,width=";
	options += (screen.width - 100);
	options += ",height=";
	options += (screen.height - 100);
	popupWin = window.open(URL,"_blank",options);

}

function openWindow(URL) {



	//for ns don't have spaces in options

	var options = "screenX=0,screenY=0,top=0,left=0,resizable=yes,scrollbars=yes,width=";

	options += (screen.width - 100);

	options += ",height=";

	options += (screen.height - 100);



	popupWin = window.open(URL,"_blank",options);

}



function openWindowSpecifySize(URL,dummy,width,height) {

	//dummy for backwards compatibility



	//for ns don't have spaces in options

	var options = "screenX=0,screenY=0,top=0,left=0,resizable=yes,scrollbars=yes,width=";

	options += width;

	options += ",height=";

	options += height;



	popupWin = window.open(URL,"_blank",options);

}



function mouseOverSelect() {

	arg = mouseOverSelect.arguments;

	if (document.images) {eval ('document.' + arg[0] + '.src=' + 'arg[1]');	}

}








