// Short Pop-Up
function shortPopUp( url, name, width, height, scrollbars ) {
	var top  = "50";
	var left = "50";
	if( scrollbars == null ) scrollbars = "0";
	str  = "";
	str += "resizable=1,titlebar=0,menubar=0,";
	str += "toolbar=0,location=0,directories=0,status=0,";
	str += "scrollbars=" + scrollbars + ",";
	str += "width=" + width + ",";
	str += "height=" + height + ",";
	str += "top=" + top + ",";
	str += "left=" + left;
	window.open( url, name, str );
}