/**
 * Show youtube movie
 */
function showYoutubeMovie( url ) {

	var oConfig = { 'url': ROOT_URL + 'index.php?act=media/youtube&link=' + escape( url ), 'width': 425, 'height': 355, 'scroll' : false , 'statusbar' : false};
	
	return createWindow( oConfig );

}

/**
 * Show image popup
 */
function displayImagePopup( image_url, image_width, image_height ) {

	var oConfig = { 'url': 'about:blank', 'width': image_width, 'height': image_height, 'scroll' : true , 'resize' : true, 'statusbar' : false};
	
	var oImageWindow = createWindow( oConfig );
	
	if( oImageWindow != undefined ) {
		var new_image_width = parseInt( image_width );
		var new_image_height = parseInt( image_height );
	}
	
	try {
	
		oImageWindow.document.write( '<body style="margin: auto; padding: 0px; overflow:auto;"><img onclick="window.close();" style="cursor:pointer;" src="' + image_url + '" /></body>' );
		oImageWindow.document.close();
	
	} catch( e ) {}
	
	return oImageWindow;
}
