function OpenItem (id){
	var w=window.open("/cgi-bin/get.cgi?alias=item&iid="+id, null, "resizable=yes, status=no, scrollbars=yes, titlebar=no, height=560, width=760");
	w.focus();
}

//Common popup
function PopUp(alias, template, width, height){
	if (template) { template="&template="+template }
	if (alias){
		var w=window.open('/cgi-bin/get.cgi?alias='+alias+template, '', 'width='+width+',height='+height+',status=0,toolbar=0,location=0,scrollbars=0,menubar=0,resizable=0');
		w.focus();
	}
}
