function OpenUp(theURL) { 
	var width="700", height="470";
	var left = (screen.width/2) - width/2;
	var top = (screen.height/2) - height/2;
	var features = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width=' + width + ',height=' + height + ',left=' + left + ',top=' + top + ',screenX=' + left + ',screenY=' + top;
	
	window.open(theURL, "RedWand", features);
}

function OpenUp2(theURL) { 
	var features = 'toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbar=yes,resizable=yes,copyhistory=yes';
	window.open(theURL, "Project", features);
}