
				function popup_editfield(url)
					{
						window.open(url, "editfield", "scrollbars=no,resizable=no,width=400,height=280");
					}

				function popup_admin(url)
					{
						window.open(url, "admin", "scrollbars=yes,resizable=yes,width=700,height=700");
					}

				function slideshow(model, set)
					{
						var agt=navigator.userAgent.toLowerCase();
					   	var is_ie   = (agt.indexOf("msie") != -1);
						var features;
						if (is_ie)
							{
							 	features="fullscreen=yes";
							}
						else
							{
								features="toolbar=0,scrollbars=0,location=0,border=0,status=0,resizable=no,menubar=0,";
								features=features + 'outerHeight=' + screen.availHeight + ',outerWidth=' + (screen.availWidth-2);
							}
						var w=window.open('../function/function.php?set_id='+set+'&model_id='+model+"&start=1",'fullscreen',features);												
						if (w!=null)
							{
								if (!is_ie && screen.availLeft!=null && screen.availTop!=null)
									w.moveTo(screen.availLeft,screen.availTop);
								w.focus();
							}
					}
