/**
Script: extras.js
*/

var newwindow;
function screenshotPopup(url, width, height)
{
	newwindow=window.open(url,'Screenshot','height='+height+',width='+width+',toolbar=false,menubar=false,location=false,directories=false');
	if (window.focus) {newwindow.focus()}
}