<!--
var w = 0;
function launch(theURL, type, atts){
	w+=1;
	var theName = 'myWindow'+type;
	if (atts) theName += w
	var theAttributes;
	if (type==1) {
		theAttributes = 'resizable=no,left=10,top=10,screenX=12,screenY=12,height=405,width=540'
	} else if (type==2) {
		theAttributes = 'resizable=no,left=10,top=10,screenX=12,screenY=12,height=614,width=510';
	} else if (type==3) {
		theAttributes = 'resizable=no,left=10,top=10,screenX=12,screenY=12,height=232,width=780';
	} else if (type==4) {
		theAttributes = 'resizable=no,left=10,top=10,screenX=12,screenY=12,height=468,width=656';
	} else if (type==5) {
		theAttributes = 'resizable=no,scrollbars=no,left=10,top=10,screenX=12,screenY=12,height=382,width=614';
		}
		
	if (atts) {
		theAttributes+= ',' + atts;
		}
	WindowObj = window.open(theURL,theName,theAttributes);
	if (WindowObj) return false;
	return true;
	}
-->