// JavaScript Document
var newwindow;
function reportwindow(url)
{
	newwindow=window.open(url,'name','height=400,width=550,resizable=yes,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}

function creditswindow(url)
{
	newwindow=window.open(url,'name','height=200,width=500,resizable=yes,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}

function imagewindow(url)
{
	newwindow=window.open(url,'name','height=600,width=800,resizable=yes,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}
