/* Copyright (c) by Andrew DiFiore Jr. All rights reserved. */

defaultStatus = "Kristin Kreuk";

function openWindow(url, name, rs, sc, mn, tb, w, h, cent) { 
	popupWin = null;
	if (rs) resize = "resizable,"; else resize = "";
	if (sc) scrolls = "scrollbars,"; else scrolls = "";
	if (mn) menu = "menubar,"; else menu = "";
	if (tb) tool = "toolbar,"; else tool = "";
	if (cent) { // center popup
		chasm = screen.availWidth;
		mount = screen.availHeight;	  
		popupWin = window.open(url, name, resize + scrolls + menu + tool + 'width=' + w + ',height=' + h + ',left=' + ((chasm - w) * 0.5) + ',top=' + ((mount - h) * 0.5));
	} 
	else popupWin = window.open(url, name, resize + scrolls + menu + tool + 'width=' + w + ',height=' + h + ',left=' + (w * 0.99) + ', top=' + (h * 0.93));
}

function fullScreen(url, name) {
	openWindow(url, name, 1, 1, 0, 0, screen.width, screen.height, 0);
}

