// JavaScript Document
function popupWindow(url, width, height) {
	window.open(url, "myWindow", "status = 0, height=" + height + ", width=" + width + ", resizable = 0"); 
}