﻿var newWin; // new window variable

function popUp(url , title) { // Gallery popUp
	if (newWin && !newWin.closed) {
		newWin.focus();
		newWin.document.clear();
	}
	else {
		newWin=window.open('','','width=720,height=405,resizable=1');
	}
	newWin.document.writeln('<head> <title>' + title + '<\/title> <\/head> <body bgcolor=\"white\" topmargin=\"0\" leftmargin=\"0\" > <center>');
	newWin.document.writeln('<img src=\"' + url + '\" alt=\"' + title + '\" >');
	newWin.document.writeln('<\/center> <\/body> <\/html>');
	newWin.document.close();
}

function popUpVideo(url , title) { // Video popUp
	if (newWin && !newWin.closed) {
		newWin.focus(); newWin.document.clear();
	}
	else {
		newWin=window.open('','','width=950,height=360,resizable=1');
	}
	newWin.document.writeln("<head> <title>" + title + "</title> <script type=\"text/javascript\" src=\"/includes/js/AC_QuickTime.js\"><\/script> </head> <body bgcolor=\"black\" topmargin=\"0\" leftmargin=\"0\" > <center>");
	newWin.document.writeln("<OBJECT CLASSID=\"clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B\" height=\"360\" width=\"950\" CODEBASE=\"http://www.apple.com/qtactivex/qtplugin.cab\"> <PARAM NAME=\"src\" VALUE=\"" + url + "\"> <PARAM NAME=\"autoplay\" VALUE=\"true\" > <EMBED height=\"360\" width=\"950\" TYPE=\"video/quicktime\" PLUGINSPAGE=\"http://www.apple.com/quicktime/download/\" SRC=\"" + url + "\" AUTOPLAY=\"true\" /> </OBJECT> ");
	newWin.document.writeln("<\/center> <\/body> <\/html>");
	newWin.document.close();
}

function tidy() {
	if (newWin && !newWin.closed) {
		newWin.close();
	}
}
