// JavaScript Document

function popWindow(whichURL, height, width) {	
	window.open( whichURL, "myWindow", "status = 0, height ="+height+", width ="+width+", resizable = 0, scrollbars=0");
}

function popScrollbarWindow(whichURL, height, width) {	
	window.open( whichURL, "myWindow", "status = 1, height ="+height+", width ="+width+", resizable = 1, scrollbars=1");
}