function popup() {
url = 'http://www.cfc.de/action.php';
var browser = navigator.appName;
if (browser=='Microsoft Internet Explorer'){
title = 'SONDERAKTION';
movement=false;
}
else{
title='...:::S O N D E R A K T I O N:::...';
movement=true;
}
win = window.open(url,title,'width=900,height=600,left=0,top=16,scrollbars=yes,resizable=yes');
if (movement==true){
win.moveTo(screen.width/2-150,screen.height/2-180);}
win.focus();
}
