function OpenPopup ( imageID, width, height ){
	url = AbsPath +'Popup.php?id='+imageID;
	if( width > 0 && height > 0 ){
		var WindowWidth = parseInt( width )+20;
		var WindowHeight = parseInt( height )+20;
	} else {
		var WindowWidth = 422;
		var WindowHeight = 620;
	}	
	javascript:window.open( 
			url,
			'Popup',
			'toolbar=0,location=0,directories=0,s tatus=0,menubar=0,scrollbars=0,resizable=0,width='+WindowWidth+',height='+WindowHeight+''
	); return false;

}


