function openPopup(urlToOpen,desiredWidth,desiredHeight)
{
	// script to open a new window with a specific size for viewing of another html page in a popup window
	// ©2001 Digital Sound & Vision
	
	var popupWindow,w,h
	h = desiredHeight.toString(10);
	w = desiredWidth.toString(10);
	popupWindow = window.open( urlToOpen, "dsv", "height="+h+",width="+w );
	popupWindow.focus();
}

