function refreshform(forma, action){
	forma.action = action;
	forma.target = "_self";
	forma.submit();
	return false;
}

function showpic(type, id){
	switch(type){
		case "theatre":
			url = "/theatre/pic/?id=" + id;
			width = 640;
			if(screen.height > 550) height = 550;
			else height = screen.height - 100;
		break;
	}
//	url = "movie_details.php?id=" + id;
	aPopUp = open(url,'picture','scrollbars=yes,toolbar=no,directories=no,location=no,menubar=no,resizable=yes,header=no,width='+width+',height='+height+',left='+(screen.width - width)/2+',top=50');
	self.aPopUp.creator = self;
	self.aPopUp.creatorname = this.name;
//	self.aPopUp.wheretogo = location.href;
	aPopUp.focus();

}
function printiMeil(name,domain,styleclass){
	imeil = name + "@" + domain;
	meil2 = "<a href=\"mai" + "lto:" + imeil + "\"";
	if(styleclass) meil2 += " class=" + styleclass;
	meil2 += ">" + imeil + "</a>";
	document.write(meil2);
}