/* this is the javascript functions that control the opening of popup windows when 
	the site is in edit mode.  */

function open_new_pop_up(url,width,height) {
	new_pop_up = window.open(url,"new_pop_up","width=" + width + ",height=" + height + ",menubar=no,status=yes,toolbar=no,scrollbars=yes,resizable=yes,location=no,left=300,top=300");  
	new_pop_up.focus();
}
function open_new_pop_up2(url,width,height) {
	new_pop_up = window.open(url,"new_pop_up2","width=" + width + ",height=" + height + ",menubar=no,status=yes,toolbar=no,scrollbars=yes,resizable=no,location=no,left=300,top=300");  
	new_pop_up.focus();
}

function open_new_pop_up_bare(url,width,height) {
	new_pop_up = window.open(url,"new_pop_up","width=" + width + ",height=" + height + ",menubar=no,status=no,toolbar=no,scrollbars=no,resizable=no,location=no,left=300,top=300");  
	new_pop_up.focus();
}