// JavaScript Document
// popup für Linksend

function popupsend()
{
url="http://www.croquet.at/linksend.html";
largeur=500;
hauteur=400;
var left=(screen.width-largeur)/2;
var top=(screen.height-hauteur)/2;
nwin=window.open(url,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+",scrollbars=auto,resizable=yes");

nwin.focus();
}