
function imgpopup(id) {
	var tmp=new Image();
	tmp.src="/tools/shpic?id="+id;
	var img=tmp;
	var wid=img.width;
	var hei=img.height;
	var wref=window.open('/tools/popuphtml?id='+id, 'kw_imgpopup','width='+wid+',height='+hei+',resize=0,status=no,toolbar=no,scroll=no');
	//wref.resizeBy(wid-wref.document.body.clientWidth,hei-wref.document.body.clientHeight);
	}

function open_doc(cime,szelesseg,magassag){
	if (typeof usrwindow != 'undefined'){
		if (!usrwindow.closed) usrwindow.close();
		}
	usrwindow=window.open(cime,'ablak',			
	'top=0,left=0,resizable=no,hotkeys=yes,width='+szelesseg+',height='+magassag);
	}

function sendpopup() {
	open_doc('http://www.konyhaweb.hu/sendit/index.pcgi?url='+location.href,365, 300);
	}

function ShowContent(d) {
	if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById(d).style.visibility = "";
	} else {
		if (document.layers) { // Netscape 4
			document.d.visibility= "";
		} else { // IE 4
			document.all.d.style.visibility = "";
			}

		}
	}

function HideContent(d) {
	document.getElementById(d).style.visibility = "hidden";
	if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById(d).style.visibility = "hidden";
	} else {
		if (document.layers) { // Netscape 4
			document.d.visibility= "hidden";
		} else { // IE 4
			document.all.d.style.visibility = "hidden";
			}
		}
	}
