function ShowCloseup(i)
{	
	if(parseInt(navigator.appVersion) > 3)
	{
		window.open('/Includes/Dialogs/Closeup.asp?ID=' + i, 'closeup' + i, 'left=10,top=10,height=322,width=400,statusbar=no,toolbar=no,maximize=no,resizable=yes,border=no,frameborder=no,menu=no,caption=no');
	} else {
		// No "resizeTo" functionality. - Emulate it.
		window.open('/Includes/Dialogs/Closeup.Prep.asp?ID=' + i, '', 'left=-100,top=-100,height=1,width=1');
	}	
}
function ShowGlossary(i,w)
{
	var url = '/Includes/Dialogs/Glossary.asp?ArticleID=' + i + '&Word=' + w;
	window.open(url, '', 'height=322,width=400,top=0,left=0,statusbar=no,menubar=no,toolbar=no');
}
function ShowTimeline(i)
{
	window.open('/Includes/Dialogs/Timeline.asp?ArticleID=' + i, '', 'height=470,width=400,top=0,left=0,statusbar=no,menubar=no,toolbar=no,resizable=yes');
}
function ShowBigTimeline()
{
	window.open('/Includes/Dialogs/BigTimeline.asp', '', 'height=450,width=550,top=0,left=0,statusbar=no,menubar=no,toolbar=no,resizable=yes');
}
function Subscribe()
{
	window.open('/Includes/Dialogs/Subscribe.asp', '', 'height=400,width=400,top=0,left=0,statusbar=no,menubar=no,toolbar=no,resizable=yes');
}
function ExternalLink(i,u)
{
	window.open('/Includes/Dialogs/ExternalLink.asp?ID=' + i + '&URL=' + escape(u), '', 'height=480,width=640,top=0,left=0,statusbar=yes,menubar=no,toolbar=no,resizable=yes,border=no,frameborder=no,menu=no,caption=no');
}
