
//function to open a new browser window
//Link syntax: <a href="javascript:popUp('/download.asp',680,420,'no')">link</a>
function popUp(url,width,height,scrollbars){
	//define height and width if they are not passed
	//as arguments
	if(!height)
		height=300;
	if(!width)			
		width=500;
	if(!scrollbars)			
		scrollbars="yes";
	var settings = "toolbar=no,resizable=no,height=" + height + ",width=" + width + ",scrollbars=" + scrollbars;
	Testwin = window.open(url,'',settings);
	}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}