//*************************
// JavaScript Library
// (c) 2007
//*************************

function openScreenshotWin(imageURL, vWidth, vHeight) {
	window.open(imageURL,'screenshotWindow', 'width=' + vWidth + ',height=' + vHeight + ',toolbars=no');
}

