function showVideoPop(the_path){
	the_html = "";
	var_string=	"the_path=/common/flash/"+the_path;

	the_html=the_html+"<TABLE CELLPADDING='0' CELLSPACING='0' BORDER='0' WIDTH='340' HEIGHT='100%'>";
	the_html=the_html+"<TR><TD HEIGHT='15' ALIGN='right'><div style='margin: 5px;'><A HREF='javascript: hideVideoPop();'>[close]</A></div></TD></TR>";
	the_html=the_html+"<TR><TD HEIGHT='280'>";
	the_html=the_html+"	<OBJECT ID='flash_nav' CLASSID='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' WIDTH='340' HEIGHT='280' BORDER='0'>";
	the_html=the_html+"		<PARAM NAME='movie' 	VALUE='/common/flash/vidPlayer.swf'>";
	the_html=the_html+"		<PARAM NAME='FlashVars' VALUE='"+var_string+"'>";
	the_html=the_html+"		<PARAM NAME='quality' 	VALUE='high'>";
	the_html=the_html+"		<PARAM NAME='bgcolor' 	VALUE='#FFFFFF'>";
	the_html=the_html+"	<EMBED SRC='/common/flash/vidPlayer.swf' name='flash_nav' FlashVars='"+var_string+"' QUALITY='high' TYPE='application/x-shockwave-flash' WIDTH='340' HEIGHT='280' BGCOLOR='#FFFFFF'></EMBED>";
	the_html=the_html+"	</OBJECT>";
	the_html=the_html+"</TD>";
	the_html=the_html+"</TABLE>";
	
	document.getElementById("videoPopDiv").innerHTML = the_html; 
	document.getElementById("videoPopDiv").style.visibility="visible";	
}

function hideVideoPop(){
	document.getElementById("videoPopDiv").style.visibility="hidden";
	document.getElementById("videoPopDiv").innerHTML = ""; 
}

function showLargeImage(the_image_path){
	the_html = "";
	
	the_html=the_html+"<TABLE CELLPADDING='0' CELLSPACING='0' BORDER='0' WIDTH='250' HEIGHT='100%'>";
	the_html=the_html+"<TR><TD HEIGHT='15' ALIGN='right'><A HREF='javascript: hideLargeImage();'>[close]</A></TD></TR>";
	the_html=the_html+"<TR><TD HEIGHT='250'><IMG SRC='"+the_image_path+"' WIDTH='250' HEIGHT='250'></TD></TR>";
	the_html=the_html+"</TABLE>";
	
	document.getElementById("largeImageDiv").innerHTML = the_html; 
	document.getElementById("largeImageDiv").style.visibility="visible";	
}

function hideLargeImage(){
	document.getElementById("largeImageDiv").style.visibility="hidden";
}

