function showQuestionsDialog(type) {
    var url = "/hardware/digitalcommunication/ProductFinder/ProductFinderPopup.aspx?type=" + type;
    popupOnCenter(url, 360, 385);
}
function showSelectedQuestionDialog(type, backfrom)
{
	var url = "/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 = "/hardware/digitalcommunication/ProductFinder/default.aspx?type=" + type;
}
function showSelectedLandingPage(type, backfrom)
{
	window.location.href = "/hardware/digitalcommunication/ProductFinder/default.aspx?type=" + type + "&backfrom=" + backfrom;
}
