
function LaunchSurvey(idHomeCatgeory)
{
	if(idHomeCatgeory==-1)
	{
		LaunchPopup();
	}
}

function LaunchPopup() {
var nth = 1;
var rnd = Math.floor(Math.random() * nth) + 1;
if (rnd == nth) 
{
 	 setTimeout('window.open(\'http://survey.redsheriff.com/survey/re2129_invitation.htm\',\'Survey\',\'width=425,height=600\')',5000)
}
}

