	function SetImage(val)
	{
		var thisObj = document.getElementById('muzImage');
		var thatObj = document.getElementById('muzLargeImage');

		if(val==1)
		{
			thisObj.src='images/beneksiz.jpg';
			thatObj.src='images/beneksiz_large.jpg';
		}
		else if (val==2)
		{
			thisObj.src='images/azbenekli.jpg';
			thatObj.src='images/azbenekli_large.jpg';
		}
		else 
		{
			thisObj.src='images/benekli.jpg';
			thatObj.src='images/benekli_large.jpg';
		}
	} 
		
	function popupWindow(width,height,url)
	{
		var w = width;
		var h = height;
		
		if (window.innerWidth || window.innerHeight)
		{ 
			x = (window.innerWidth - w) / 2; 
			y = (window.innerHeight - h) / 2; 
		} 

		if (document.body.clientWidth || document.body.clientHeight)
		{ 
			x = (document.body.clientWidth - w) / 2; 
			y = (document.body.clientHeight - h) / 2; 
		} 
		
		var prop2 = 'menubar=no, location=no, status=no,width=' + w + ',height=' + h + ',top='+y+',left='+x+',scrollbars=vertical';
		var wndChild2 = window.open(url,'Window',prop2);
		wndChild2.window.focus();
	}
	
	function popupWindow2(width,height,url)
	{
		var w = width;
		var h = height;
		
		if (window.innerWidth || window.innerHeight)
		{ 
			x = (window.innerWidth - w) / 2; 
			y = (window.innerHeight - h) / 2; 
		} 

		if (document.body.clientWidth || document.body.clientHeight)
		{ 
			x = (document.body.clientWidth - w) / 2; 
			y = (document.body.clientHeight - h) / 2; 
		} 
		
		var prop2 = 'menubar=no, location=no, status=no,width=' + w + ',height=' + h + ',top='+y+',left='+x+',scrollbars=yes';
		var wndChild2 = window.open(url,'New',prop2);
		wndChild2.window.focus();
	}
	