
function popup( url, w, h ){

	if(!w) w = 600;
	if(!h) h = 600;
	window.open( url, "popup","width="+w+",height="+h+",scrollbars=yes,resizable=yes" );
	return false;
}

function close_popup(){
	window.close();
}
