function openLargeImg(strImgName)
	{
		var winprops = "width=600,height=400,toolbar=no,resizeable=no,scrollbars=no"

		if (typeof winImg != "object" || winImg == null || winImg.closed) winImg = window.open("showimg.php?img="+strImgName,"img_win",winprops)
		else
		{
			if (window.resizeTo) winImg.resizeTo(600,400)
			winImg.location.replace("showimg.php?img="+strImgName)
		}
		if (window.focus) winImg.focus()
	}	// ENDE openOrderWin()


	function closeWin()
	{
		if (typeof winImg == "object")
		{
			if (winImg.closed == false) winImg.close()
		}
	}	// ENDE closeWin()
	
	
	
	
	function openWindow(url,i,j,scroll,resize)
{
	var winprops = "width=" +i+ ",height=" +j+ ",menubar=" +false+ ",toolbar=" + false+ ",resizable=" + resize + ",scrollbars=" + scroll
	popupWin = window.open(url,'',winprops)
}

var popup_window = null;
function popup(status,url)
{
	if(status != 0)
	{
		if(window.focus && popup != null)
		{
			popup.focus();
		}
		else
		{
			var popup = open(url, "Popup", "width=720,height=500,scrollbars=no, toolbar=no, menubar=no");
			popup_window = popup;
		}
	}

	else
	{
		if(popup_window != null) popup_window.close();
	}
}

