function openpopup_catalog(){
	window.open("popup.html","","status=no,toolbar=no,directories=no,menubar=no,width=250,height=250,screenx=400,screeny=300,left=400,top=300")
}

function get_cookie_catalog(Name){
	var search = Name + "="
	var returnvalue = "";
	if (document.cookie.length > 0){
		offset = document.cookie.indexOf(search)
		if (offset != -1) { // if cookie exists
			offset += search.length
			// set index of beginning of value
			end = document.cookie.indexOf(";", offset);
			// set index of end of cookie value
			if (end == -1)
				end = document.cookie.length;
				returnvalue=unescape(document.cookie.substring(offset, end))
		}
	}
	return returnvalue;
}

function loadpopup_catalog(){
	if (get_cookie_catalog('popped_catalog')==''){
	openpopup_catalog()
	document.cookie="popped_catalog=yes"
	}
}

function MM_displayStatusMsg(msgStr) { 
  status=msgStr;
  document.MM_returnValue = true;
}

function popup(sida){
   window.open(sida,'menu','toolbar=no,location=0,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=496,height=371')
   }

   function popWin(url,name,width,height,scroller) 
{
	var outStr = 'height=' + height + ',width=' + width;
		if (scroller != 'true') 
		{
			outStr = outStr + ',menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no';
		}
		else 
		{
			outStr = outStr + ',menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars,resizable=no';
		}
	window.open(url, name, outStr);
}

