
function newWinPhotoView(url,photo_title,imwidth,imheight) {
	var winwidth = imwidth + 30;
	var winheight = imheight + 60;
	var winleft = Math.round((window.screen.width - winwidth) /2);
	var wintop = Math.round((window.screen.height - winheight) /2);
	var photo_window = window.open("","full_size_photo","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,top=" + wintop + ",left=" + winleft + ",width=" + winwidth + ",height=" + winheight + "");
	photo_window.document.open("text/html");
	photo_window.document.write("<html>");
	photo_window.document.write("<header><title>" + photo_title + "</title><link href=\"cboakville_styles.css\" rel=\"stylesheet\" type=\"text/css\"></header>");
	photo_window.document.write("<body bgcolor=\"#315CC9\" align=\"center\" valign=\"center\">");
	photo_window.document.write("<table><tr><td class=\"onBg\">" + photo_title + "</td></tr><tr><td><img src=\"" + url + "\" width=" + imwidth + " height=" + imheight + "></td></tr></table>");
	photo_window.document.write("</body></html>");
	photo_window.document.close();
	photo_window.focus();
}


function newWinDoc(docwidth,docheight) {
	var winwidth = docwidth + 30;
	var winheight = docheight + 30;
	var winleft = Math.round((window.screen.width - winwidth) /2);
	var wintop = Math.round((window.screen.height - winheight) /2);
	var doc_window = window.open("","document","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,top=" + wintop + ",left=" + winleft + ",width=" + winwidth + ",height=" + winheight + "");

	doc_window.focus();
}

