function PopUpWin(title,path,w,h){
	var wn="ImageWindow";
	var st="width="+w+",height="+h+",scrollbars=yes";
	opwin=window.open("",wn,st);
	opwin.document.open();
	opwin.document.write(
		  "<html><head><title>"+title+"</title></head>"
		+ "<body style='margin:0px;'>"
		+ "<img src='"+path+"'>"
		+ "</body></html>"
	);
	opwin.document.close();
}

var Menuhead={
	ahref:function(href){
		location.href=href;
	},
	nobubble:function(e){
		e=event||e;
	}
};
