function openLargeImage(largeImage, skinId, topSentence) {
	myWindow = window.open("", "tinyWindow", 'width=700,height=600,resizable=yes,scrollbars=yes');
	myWindow.document.write("<html><head><link rel='stylesheet' type='text/css' href='/skins/sites/template" + skinId + "/css/global.css'></head><body>");
	myWindow.document.write("<span class='black'>" + topSentence + "</span>");
	myWindow.document.write("<br>");
	myWindow.document.write("<img src='" + largeImage + "'></body></html>");
	myWindow.document.close();
}
