//////////////////////////////////////////////////////////////////////////////
//                                                                          //
//  Open Stadion                                                            //
//                                                                          //
//      Copyright (C) 2007,                                                 //
//        Karin Mientjes <km@karinmientjes.nl>                              //
//        Michiel Sikma <michiel@thingmajig.org>                            //
//                                                                          //
//////////////////////////////////////////////////////////////////////////////

// popup function
//      Opens a simple pop-up for use with the postermaker.
//
// Synopsis:
//      popup(link:String, width:Number)
//
// Parameters:
//      link:String
//          The page shown inside of the pop-up window.
//      width:Number
//          The width of the pop-up screen.
//
// Returns:
//      Nothing.

function popup(link, width, height, obj)
{
	if (!width) {
		var width = 450;
	}
	if (!height) {
		var height = (screen.availHeight * 0.75);
	}
	var x = 32;
	var y = 32;
	
	if (!obj) {
		var obj = "popupWindow";
	}
	
    window.open(link, obj, "height=" + height + ", width=" + width + ", resizable=no, scrollbars=yes, menubar=no, toolbar=no, location=no, left=" + x + "top=" + y);
}