function openWindow(page) {
	myWindow = window.open(page,'BrowserBuddy','width=360,height=480,resizable=no,scrollbars=yes');
}

function openImageWindow(showID,screenshotID) {
	var w = 200;
	var h = 200;
	var winl = (screen.width / 2) - w;
	var wint = (screen.height / 2) - h;
	window.open('imagewindow.php?show_id='+showID+'&image_id='+screenshotID, '', 'resizable=no, height='+h+',width='+w+',top='+wint+',left='+winl);
}
