﻿/// Toggle show or hide channels when click on bouquet : onClick="javascript:ShowPicture()"
	function ShowPicture(newImageUrl, h )
	{
		var elemImage = document.getElementById( 'ctl00_fr_cphMain_fr_imImage');
		if( elemImage != null )
		{
		
			elemImage.src = newImageUrl;
//			elemImage.Height=123 ;
//		 	elemImage.width=280;
			//defaultStatus=elemImage.src;
						
		}
	}	
	
	
	 function OpenPopup(link,width,height)
                    {
                        window.open(link,
                            "morality",
                            "toolbar=no,location=no,status=yes,directories=no"+
                            ",menubar=no,scrollbars=yes,resizable=no"+
                            ",width="+width+",height="+height);
                    }
                    
 function ShowBigPicture(elemImage) 
 {
 var imgUrl = elemImage.src;
 imgUrl=imgUrl.replace("_L.","_X.");
 OpenPopup(imgUrl,450,450);
 }                   
                    
                    
