// JavaScript Document Popup
popupW = null;
function popup(url, w, h){
	settings='width='+ w + ',height='+ h + ',top=50,left=50,location=yes,directories=yes,menubar=yes,toolbar=yes,status=yes,scrollbars=yes,resizable=yes,dependent=yes';
	popupW = window.open(url, 'PopUp', settings);
}

function popupSimple(url){
	settings='width=640,height=480,top=50,left=50,location=no,directories=no,menubar=no,toolbar=no,status=no,scrollbars=no,resizable=yes,dependent=no';
	popupW = window.open(url, 'PopUp', settings);
}

function confirmAndRedirect(message, url){
	if(confirm(message))
		location.href=url;
}

function chooseImagePopUp(){
	//url = '/includes/ckfinder/ckfinder.html?type=Images';
	url = '/js/FCKeditor/editor/filemanager/browser/default/browser.html?Type=Image&Connector=connectors/php/connector.php';
	popupSimple(url);
}

function SetUrl(url){
	popupW.close();
	document.getElementById('imageSrc').src = url;
	document.getElementById('imageInput').value = url;
}
