function popup(name, href, width, height) {

	if(width == 0) width = 400;
	if(height == 0) height = 300;

	window.open(href, name, "menubar=no,location=no,resizable=yes,scrollbars=yes,status=no,width=" + width + ",height=" + height);

}
