/* Link to open a popup-window with any content */
function popUp(url,windowname,style)
{
var standard = "top=10,left=200,resizable=yes,status=no,toolbar=no,menubar=no,location=no";
if (style=="pro" || style=="int" || style=="sef") var size = ",scrollbars=yes,width=600,height=500";
else if (style=="poi") var size = ",scrollbars=yes,width=500,height=560";
else if (style=="pri") var size = ",scrollbars=yes,width=685,height=680";
else if (style=="cms") var size = ",scrollbars=yes,width=500,height=480";
else if (style=="loc") var size = ",scrollbars=no,width=305,height=435";
else if (style== "profile")
{
var size = ",scrollbars=no,width=200,height=60";
}
newwin = window.open(url,windowname,standard+""+size);
newwin.focus(self);
}
