// JavaScript Document
function imgPopup(imgSrc, imgWidth, imgHeight) {
	leftPos = 0;
	topPos = 0;
	if (screen) {
		leftPos = (screen.width / 2) - (imgWidth / 2);
		topPos = (screen.height / 2) - (imgHeight / 2);
	}
	var newWindow = window.open('','','location=0,status=0,scrollbars=0,width=' + imgWidth + ',height=' + imgHeight + ',left=' + leftPos + ',top=' + topPos);
	newWindow.document.write('<html><head>');
	newWindow.document.write('<link rel="stylesheet" href="_styles.css" />');
	newWindow.document.write('<style type="text/css">');
	newWindow.document.write('<!--');
	newWindow.document.write('html,body { overflow-y: hidden ! important; overflow-x: hidden ! important; }');
	newWindow.document.write('-->');
	newWindow.document.write('</style>');
	newWindow.document.write('<p><img src="' + imgSrc + '" /></p>');
	newWindow.document.write('</body></html>');
	newWindow.document.close();
}

function webPopup(webSrc) {
	leftPos = 0;
	topPos = 0;
	if (screen) {
		leftPos = (screen.width / 2) - 450;
		topPos = (screen.height / 2) - 350;
	}
	var newWindow = window.open(webSrc,'','location=0,status=0,scrollbars=0,width=900,height=900,left=' + leftPos + ',top=' + topPos);
}
