<!-- Original:  Ari Rebach (www.arirebach.com) -->

<!-- Begin
function newWindow(url, width, height) {

if (width == 0 || height == 0) {
		
        // Opens the New Window to the URL specified
        window.open(url);
        }
else {
	// Sets the New Window Properties
	windowprops = "width=" + width + ",height=" + height;

	// Opens the New Window to the URL specified, with the 
        // set Window Properties
	window.open(url, "", windowprops);
	}
}

//  End -->