<!--

/***********************************

* (c) 2004 Globalpark GmbH *

* http://www.globalpark.de/ *

**********************************/

 

/*************************************************************************

* parameters you have to modify *

************************************************************************/

var cookie_name = "wago";

var cookie_expire = "Sat,1 Jan 2011 10:00:00 UTC";

var prozent_propability = 100;

var survey_url = "http://www.efs-survey.com/uc/Wago/b884/";

 

/*************************************************************************

* parameters you may modify *

************************************************************************/

var popup_height = 860;

var popup_width = 850;

var popup_toolbars = "no";

var popup_scrollbar = "yes";

var popup_locationbar = "no";

var popup_directories = "no";

 

/************************************************************************

* from here everything runs automatically *

***********************************************************************/

function gp_survey_checkpopup()

{

// execute only if user has no cookie yet

if (document.cookie.indexOf(cookie_name+"=true") == -1)

{

// try to set cookie if not set already

document.cookie=cookie_name+"=true;path=/;"+cookie_expire;

// check if this is n-th visitor (in this example each user is invited)

if ((Math.random() <= (prozent_propability / 100)))

{

// calculate position of pop up and show pop up

var leftcom = (screen.width-popup_height)/2;

var obencom = (screen.height-popup_width)/2;

window.open(survey_url,"","left="+leftcom+",top="+obencom+",

height="+popup_height+",width="+popup_width+",

toolbar="+popup_toolbars+",scrollbars="+popup_scrollbar+",

location="+popup_locationbar+",directories="+popup_directories);

}

}

}

 

// -->


