function PopupArticle(site) {
    var SiteSrc = "/HOOT_DCTM/" + site;
    var popupwindow = window.open("_blank", "newwindow","align=center,valign=middle,location=no,scrollbars=yes,width=710,height=610");
    //setTimeout("popupwindow.focus()", 100);

	popupwindow.document.writeln('<html>');
	popupwindow.document.writeln('<head>');
	popupwindow.document.writeln('	<title>Honda Motorcycles - Hoot Articles</title>');
	popupwindow.document.writeln('</head>');

	popupwindow.document.writeln('<frameset rows="87,*" border=0>');
	popupwindow.document.writeln('	<frame name="nav" src="nav_articles.html" scrolling="no">');
	popupwindow.document.writeln('	<frame name="articles" src="' + SiteSrc + '">');
	popupwindow.document.writeln('</frameset>');

	popupwindow.document.writeln('<body>');



	popupwindow.document.writeln('</body>');
	popupwindow.document.writeln('</html>');

	return;
	
}

function PopupPhotos(site) {
    var SiteSrc = "/HOOT_DCTM/" + site;
    var popupwindow = window.open("_blank", "newwindow","align=center,valign=middle,location=no,scrollbars=yes,width=710,height=610");
    //setTimeout("popupwindow.focus()", 100);

	popupwindow.document.writeln('<html>');
	popupwindow.document.writeln('<head>');
	popupwindow.document.writeln('	<title>Honda Motorcycles - Hoot Photos</title>');
	popupwindow.document.writeln('</head>');

	popupwindow.document.writeln('<frameset rows="87,*" border=0>');
	popupwindow.document.writeln('	<frame src="nav_articles.html" scrolling="no">');
	popupwindow.document.writeln('	<frameset cols="220,*" border=0>');
	popupwindow.document.writeln('		<frame name="nav" src="' + SiteSrc + '">');
	popupwindow.document.writeln('		<frame name="photo" src="photo_blank.html">');
	popupwindow.document.writeln('	</frameset>');
	popupwindow.document.writeln('</frameset>');

	popupwindow.document.writeln('<body>');



	popupwindow.document.writeln('</body>');
	popupwindow.document.writeln('</html>');

	return;
	
}

function showPopup(sImage) {
	var myWin= open('', 'popupWindow', 'width=805,height=605,status=no,scrollbars=1,toolbar=no,resizable=1,status=0,menubar=no,screenX=100,screenY=100,');
	posX = (screen.availWidth / 2) - (805 / 2);
	posY = (screen.availHeight / 2) - (605 / 2);
	myWin.moveTo(posX, posY);
	myWin.focus();
	myWin.document.writeln('<html><head><title>Honda Rider\'s Club of America: Popup Image</title></head><body marginheight="0" marginwidth="0" topmargin="0" leftmargin="0" bgcolor="#000000">')
	myWin.document.writeln('<table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%" align="center"><tr><td align="center">');
	myWin.document.writeln('<img src="' + sImage + '" alt="Popup Image">');
	myWin.document.writeln('</td></tr></table>');
	myWin.document.writeln('</body></html>');
}

function DisplayPhotoInFrame(sImage, sCaption) {
	parent.frames['photo'].document.close();
	parent.frames['photo'].document.clear();

	parent.frames['photo'].document.writeln('<html>');
	parent.frames['photo'].document.writeln('<head>');
	parent.frames['photo'].document.writeln('	<title>Honda Motorcycles - Hoot Photos</title>');
	parent.frames['photo'].document.writeln('</head>');

	parent.frames['photo'].document.writeln('<body bgcolor="#cccc99">');
	parent.frames['photo'].document.writeln('<center>');	
	parent.frames['photo'].document.writeln('<img src="/HOOT_DCTM' + sImage + '"><br><br>');	
	parent.frames['photo'].document.writeln('<font size=2 face="arial">');	
	parent.frames['photo'].document.writeln(sCaption);	
	parent.frames['photo'].document.writeln('</font>');	

	parent.frames['photo'].document.writeln('</center>');	
	parent.frames['photo'].document.writeln('</body>');
	parent.frames['photo'].document.writeln('</html>');
	
}

var onlinewindow;
function onlinepopup(URL) {
    //onlinewindow = window.open("https://www.event-registration.biz/hondahoot/2004/", "newwindowonline", "location=yes,menubar=yes,status=yes,toolbar=yes,scrollbars=yes,resizable=yes,width=760,height=400");
    onlinewindow = window.open(URL, "newwindowonline", "location=yes,menubar=yes,status=yes,toolbar=yes,scrollbars=yes,resizable=yes,width=760,height=400");
    setTimeout("onlinewindow.focus()", 100);
    return;
}
