function OpenViewer(path)
{
	if(path != "")
	window.open(path,"SurveyViewer","toolbar=0,menubar=0,location=0,width=800,height=640,resizable=1");
	else
	alert("NO PATH!");
}

function OpenViewerSize(path,w,h)
{
	if(path != "")
	window.open(path,"SurveyViewer","toolbar=0,menubar=0,location=0,width="+w+",height="+h+",resizable=1");
	else
	alert("NO PATH!");
}