
var urlobj = "";
var imageId = "";

function BrowseServer(obj, image_id)
{
	urlobj = obj;
	imageId = image_id;

	OpenServerBrowser(
		'/common/fckeditor/editor/filemanager/browser/default/browser.html?Type=Image&Connector=../../connectors/php/connector.php',
		screen.width * 0.7,
		screen.height * 0.7 ) ;
}

function OpenServerBrowser( url, width, height )
{
	var iLeft = (screen.width  - width) / 2 ;
	var iTop  = (screen.height - height) / 2 ;

	var sOptions = "toolbar=no,status=no,resizable=yes,dependent=yes" ;
	sOptions += ",width=" + width ;
	sOptions += ",height=" + height ;
	sOptions += ",left=" + iLeft ;
	sOptions += ",top=" + iTop ;
	var oWindow = window.open( url, "BrowseWindow", sOptions ) ;
}

function SetUrl( url, width, height, alt )
{
	if ( imageId == "" ) {
        var el = document.getElementById(urlobj) ;
        el.value = el.value + "\n<img width='250' height='150' src='" + url + "' alt='' />" ;
    } else {
        document.getElementById(urlobj).value = url ;
	    document.getElementById(imageId).src = url ;
	    document.getElementById("title_image_field").style.display = 'block';
    }
	oWindow = null;
}

