// JavaScript Document
function popup(url, height, width) {
	window.open( url, "", "resizable=0,HEIGHT=" + height + ",WIDTH=" + width + ",left=5,top=5,screenX=5,screenY=5");
	return false;
}