var surveyLink1 = '';
function showSurveyOption(surveyLink, productName, imagePath)
{
	surveyLink1 = surveyLink;
	var divTop = document.body.clientHeight;
	var divWidth = document.body.clientWidth;
	divTop =  200;//(divTop / 2 ) - 72 ;
	
	document.getElementById("suveyPopupDiv").style.display = "block";
	document.getElementById("suveyPopupDiv").style.width ='400px';
	document.getElementById("suveyPopupDiv").style.top= divTop + 'px';
	var elementWidth = document.getElementById("suveyPopupDiv").offsetWidth;
	divWidth = (divWidth / 2) - (elementWidth / 2);
	document.getElementById("suveyPopupDiv").style.left= divWidth + 'px';
	document.getElementById("spanProductNameSurvey").innerHTML = productName;
	
	/* change overlay div size*/
	winW = document.body.offsetWidth;
	totalWidth = document.getElementById('tableMain').offsetWidth;
	if(winW > totalWidth) {
	   document.getElementById('overlay').style.width = winW + "px";
	} else {
		document.getElementById('overlay').style.width = (totalWidth + 50 ) + "px";
	}
	document.getElementById('overlay').style.height = "1800px";
	document.getElementById("overlay").style.display = "block"; 
	
}
function closeSurveyOption()
{
	document.getElementById("overlay").style.display = "none";
	document.getElementById("suveyPopupDiv").style.display = "none";
}
function callSurveyLink()
{
	if(document.getElementById("rdoSurvey1").checked ==true)
		window.open(surveyLink1,'SurveyPage');
	document.getElementById("suveyPopupDiv").style.display = "none";
	document.getElementById("overlay").style.display = "none";
}
