//------------------------------------------------------------------------------------------------------------------------
  function ShowPictureLoader(IMGID,ImageNr) {
  	var newurl;
  	newurl="PictureLoader.php?IMGID=" + IMGID + "&ImageNr=" + ImageNr
  	newwin=window.open(newurl,"PictureLoaderWindow","toolbar=yes,status=yes,resizable=yes,address=yes, width=500,height=450,scrollbars=yes")
  	newwin.focus();
  }

//------------------------------------------------------------------------------------------------------------------------
  function CustomizeHTMLEditorSettings(ControlId) 
  {
    var mysettings = new WYSIWYG.Settings(); 
    
    mysettings.ImagesDir = "../htmledit/images/"; 
    mysettings.PopupsDir = "../htmledit/popups/";  
    mysettings.CSSFile = "../htmledit/styles/wysiwyg.css";   
    mysettings.removeToolbarElement("insertimage");
    mysettings.removeToolbarElement("print");
    mysettings.removeToolbarElement("save");
     // attach the editor to the textarea with the identifier 'textarea1'.
    WYSIWYG.attach(ControlId, mysettings);  
  }     

//------------------------------------------------------------------------------------------------------------------------
function isempty(varstr) {
	if (varstr == null || varstr == "" || varstr == " " || varstr == "  " || varstr == "   ") 
	{ 
	return true
	}
	return false
}

