<!-- begin hiding

var w = 0;
function launch(theURL, type, atts){
	w+=1;
	var theName = 'myWindow'+w;
	var theAttributes;
	if (type==1) {
		theAttributes = 'height=402,width=580,toolbar=no,scrollbars=no,status=yes';
	} else if (type==2) {
		theAttributes = 'whatever you want';
		}
		
	if (atts) {
		theAttributes+= ',' + atts;
		}
	WindowObj = window.open(theURL,theName,theAttributes);
	return false;
	}
	
// end hiding -->