var popup;
function showImage ( id, num, wname ) {
	var img = 'catalog_' + id + '_image_' + num;
	if (popup != null && !popup.closed) popup.close();  
	mtw = (screen.width-800)/2;
	mth = (screen.availHeight-700)/2;
	popup = window.open('/image/'+id+'/'+num+'/','',"width=800,height=700,top="+mth+",left="+mtw+",status=no,toolbar=no,scrollbars=yes");
	popup.focus();
}

function switchImage ( path ) {
	var image = document.getElementById ( 'main-image' );
	image.src = '/' + path;
}

function openIMG(URL,w,h)
{
	if (popup != null && !popup.closed) popup.close();  
	sw = screen.width-100;
	sh = screen.availHeight-100;
	if (w > sw || h > sh)
	{
		if (w > sw) {w1 = sw;} else {w1 = w+17;}
		if (h > sh) {h1 = sh;} else {h1 = h+17;}
		mtw1 = (screen.width-w1)/2;
		mth1 = (screen.availHeight-h1)/2;
		popup = window.open('','Фото',"width="+w1+",height="+h1+",top="+mth1+",left="+mtw1+",status=no,toolbar=no,scrollbars=yes,resizable=no,menubar=no");
		popup.focus();
	}
	else
	{
		mtw = (screen.width-w)/2;
		mth = (screen.availHeight-h)/2;
    	popup = window.open('','Фото',"width="+w+",height="+h+",top="+mth+",left="+mtw+",status=no,toolbar=no,scrollbars=no,resizable=no,menubar=no");
		popup.focus();
	}
  	popup.document.writeln('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><title>Фото</title></head><body style="margin: 0px;"><a href="javascript:window.close();"><img src="'+URL+'" border=0 width="'+w+'" height="'+h+'" alt="Закрыть окно"></a></body></html>');
}

