

// this script opens a popup window named "PopupWindow" with no browser elements
// and at a specified width and height and url using the following syntax:
// 
// <a href="#" onClick="makeWindow('http://www.yahoo.com', 550, 250)">Yahoo</a>


function makeWindow (url, width, height) {
	
	windowProperties = '"toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=0, resizable=0, width=' + width + ', height=' + height + ', return false"';

	PopupWindow = window.open(url, "Popup", windowProperties);

	}
	
	
function makeWindow2 (url, width, height) {
	windowProperties = '"toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=0, resizable=0, width=' + width + ', height=' + height + ', return false"';
	PopupWindow = window.open(url, 'Popup', windowProperties);

	}
