
function popup(path) {
	window.open(path);
}


function popup(path,width, height) {
//var str = 
//alert(str)
	if (width==null) width=800;
	if (height==null) height=600;
	window.open(path,'', 'scrollbars=yes,status=yes,width=' + width + ',height=' + height);
}