function openQuiz()
{
	var url = "worldquest_web/quiz_0.cfm";
	window.open(url,"_blank","width=750,height=500,top=30,left=30,toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=1,scrollbars=1");
}

// enlarges the pictures:
function enlargePhoto(title,imgSrc) 
{
	var windop = window.open('','','Width=400,Height=300,top=30,left=30,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1');
	var page='';
	
	windop.document.open();
	windop.document.writeln(page);
	windop.document.writeln('<html>');
	windop.document.writeln('<head>');
	windop.document.writeln('<title>'+title+'</title>');
	windop.document.writeln('</head>');
	windop.document.writeln('<body leftmargin=0 topmargin=0>');
	windop.document.writeln('<center><img src=images/'+imgSrc+'></center>');
	windop.document.writeln('</body>');
	windop.document.writeln('</html>');
	windop.document.close();
}

function enlargeWQPhoto(titleYear,imgSrc) 
{
	var windop = window.open('','','Width=450,Height=350,top=100,left=100,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1');
	var page='';
	var title = "WorldQuest " + titleYear;
	
	windop.document.open();
	windop.document.writeln(page);
	windop.document.writeln('<html>');
	windop.document.writeln('<head>');
	windop.document.writeln('<title>'+title+'</title>');
	windop.document.writeln('</head>');
	windop.document.writeln('<body leftmargin=0 topmargin=0>');
	windop.document.writeln('<center><img src=worldquest_web/img_gallery/'+titleYear+'/full/'+imgSrc+'></center>');
	windop.document.writeln('</body>');
	windop.document.writeln('</html>');
	windop.document.close();
}

//May-17-2004: active:
function openNews(newsID)
{
	var url = "news/viewArticle.cfm?newsID=" + newsID;
	window.open(url,"_blank","width=600,height=450,scrollbars=yes");
}

function openForm(type)
{
	if (type=="errorReport")
	{
		var url="scripts/error_report.cfm";
		window.open(url,"_blank","width=200,height=200,scrollbars=yes");
	}
}

//May-17-2004: not active:
function openContactForm2(name)
{
	var url;
	
	if (name == "LICC")
	{
		url = "contact.cfm";
	}
	else
	{
		url = "contactWebmaster.cfm";
	}
	
	window.open(url,"pop","width=610,height=450,scrollbars=yes");

}

//May-17-2004: not active:
function openForm2(name)
{
	var url;
	
	if (name == "membership")
	{
		url = "membershipForm.cfm";
	}
	
	window.open(url,"pop","width=610,height=450,scrollbars=yes");
}
