function germanyhome(page,n)
{	
        /* var nth = n;
	var scookie = "GERMANY_HOMEPAGE";
	var popDown = "http://www.americanexpress.com/shared/newsurvey/germany/survey.shtml?page=" + page;
	var popUp = "http://www.americanexpress.com/shared/newsurvey/germany/mini.shtml";
	var swidth = 600;
	var sheight = 500
	var rnd = Math.floor(Math.random() * nth) + 1;
	if (rnd == nth) 
	{
		var prepick = getCookie(scookie);
		if (!prepick) 
		{
			openWindow(popDown, swidth, sheight, popUp);
			
		}
	}*/
}

function getCookie(name) {
  var dc = document.cookie;
  var prefix = name + "=";
  var begin = dc.indexOf("; " + prefix);
  if (begin == -1) {
    begin = dc.indexOf(prefix);
    if (begin != 0) return null;
  } else
    begin += 2;
  var end = document.cookie.indexOf(";", begin);
  if (end == -1)
    end = dc.length;
  return unescape(dc.substring(begin + prefix.length, end));
}
function openWindow(wUrl, width, height, nUrl)
{

	surveywindow=window.open(wUrl, 'survey','toolbar=no,location=no,directories=no,scrollbars=yes,status=no,resizable=yes,copyhistory=no,width=550,height=500');
	surveywindow.blur();
	focus();
	noticeWindow=window.open(nUrl,'front','toolbar=no,location=no,directories=no,scrollbars=yes,status=no,resizable=yes,copyhistory=no,width='+width+',height='+height);
	return false;
}
