// JavaScript Document

function largePhoto (photo, width, height) {
	if (lPhoto) lPhoto.close();
	var lPhoto = window.open("", "lPhoto", "width=" + width + ",height=" + height);

	lPhoto.document.open();
	lPhoto.document.writeln ("<HTML>")
	lPhoto.document.writeln ("<HEAD>")
	lPhoto.document.writeln ("	<TITLE>romania.org</TITLE>")
	lPhoto.document.writeln ("</HEAD>")
	lPhoto.document.writeln ("<BODY BGCOLOR='#FFFFFF' LEFTMARGIN=0 TOPMARGIN=0 MARGINHEIGHT=0 MARGINWIDTH=0>")
	lPhoto.document.writeln ("<IMG SRC='/img/" + photo + "' ALT='romania.org' WIDTH=" + width + " HEIGHT=" + height + " BORDER=0>")
	lPhoto.document.writeln ("</BODY>")
	lPhoto.document.writeln ("</HTML>")
	lPhoto.document.close();
	lPhoto.focus();
}

function viewVideo (video, width, height) {
	if (lVideo) lVideo.close();
	var lVideo = window.open("", "lVideo", "width=" + width + ",height=" + height);

	lVideo.document.open();
	lVideo.document.writeln ("<HTML>")
	lVideo.document.writeln ("<HEAD>")
	lVideo.document.writeln ("	<TITLE>romania.org</TITLE>")
	lVideo.document.writeln ("</HEAD>")
	lVideo.document.writeln ("<BODY BGCOLOR='#FFFFFF' LEFTMARGIN=0 TOPMARGIN=0 MARGINHEIGHT=0 MARGINWIDTH=0>")
	lVideo.document.writeln ("<embed src='/media/" + video + "' WIDTH='" + width + "' HEIGHT='" + height + "' autostart='true' type='movie/mpg'></embed>")
	lVideo.document.writeln ("</BODY>")
	lVideo.document.writeln ("</HTML>")
	lVideo.document.close();
	lVideo.focus();
}



