function showQuestionsDialog(type)
{
	var url = "/latam/hardware/digitalcommunication/ProductFinder/ProductFinderWindow.aspx?type=" + type;
	result = window.showModalDialog(url, null, "dialogWidth:354px; dialogHeight:385px; scroll: no; status: no; center: yes;");
    
	
	if(result != null)
		window.location.href = result;
	/*
	var url="/latam/hardware/mouseandkeyboard/ProductFinder/ProductFinderPopup.aspx?qid="+qid;
	window.open(url);
	*/
}
function showSelectedQuestionDialog(type, backfrom)
{
	var url = "/latam/hardware/digitalcommunication/ProductFinder/ProductFinderWindow.aspx?type=" + type + "&backfrom=" + backfrom;
	result = window.showModalDialog(url, null, "dialogWidth:360px; dialogHeight:375px; scroll: no; status: no; center: yes;");

	if(result != null)
		window.location.href = result;
}
function showLandingPage(type)
{
	window.location.href = "/latam/hardware/digitalcommunication/ProductFinder/default.aspx?type=" + type;
}
function showSelectedLandingPage(type, backfrom)
{
	window.location.href = "/latam/hardware/digitalcommunication/ProductFinder/default.aspx?type=" + type + "&backfrom=" + backfrom;
}
