/***** Javascript  ******/

/* Project: WECO Homepage */
/* Author:  C. Weber */
/* Date:    16.01.01 */



/* Window for Pictures */
function OpenBrWindow(theURL,winName)
{ 
  window.open(theURL,winName,"width=590,height=380,resizable=no,top=60,left=60");
}

/* Hide mailto:"e-mail" */
function set_email()
{
a = "mail";
b = "to:";
c = "mail";
d = "@coweb.ch";

parent.location = a+b+c+d;

}

