function win() {
   var w=window.open('clotho/clothoflash_05.html','clotho','width=750,height=500,scrollbars=no,toolbar=no');
   return (w==null);
}
function pop(link,x,y)
{
   if (x==null) x=850;
   if (y==null) y=650;

   if (typeof(link) == "object") link = link.href;
   var w = window.open(link, '_blank', 'height='+y+',width='+x+',resizable=yes,status=no,toolbar=no,scrollbars=yes,directories=no,location=no,menubar=no');
   return (w==null);
}
function la_pop(link)
{
   if (typeof(link) == "object") link = link.href;
   var w = window.open(link, 'CAM_la_frame', 'height=300,width=340,menubar=no,resizeable=yes,status=no,toolbar=no,scrollbars=no');
   return (w==null);
}
function dev_pop(link)
{
   // override pp translation by splitting hostname
   if (typeof(link) == "object")
   {
      link.host = "dev."+"clotho.com";
   }
   else
   {
      link = "http://dev."+"clotho.com/"+link;
   }
   return pop(link);
}