// JavaScript Document

function showPopUp(page)
{
	var pageurl = '/campaign/form/';
	var width  = 620;;
	var height = 650;
	
	window.open(pageurl+'?level='+page ,'quizz','location=no,scrollbars=1,resizable=1,height='+height+',width='+width);
}

function apopup(page,count)
{
	var pageurl;
	var width;
	var height;
	
	if(page == "clinic_detail")
	{
		
		pageurl = "http://"+top.location.host+"/locator/detail-"+encodeURI(count)+".html";
		width = 870;
		height = 600;
	}
	
	window.open(pageurl ,'locator','location=no,scrollbars=1,resizable=1,height='+height+',width='+width);
}

