/* ThinkQuest International 2006
	The DReaMers - DRM: Two Sides of the Story
	popup.js
	--------------------------------------------
	Copyright: You may use this script for non-commercial purposes,
	but must acknowledge the team.
	--------------------------------------------
	Last Revised: 04/01/06
*/

function popup(mylink, windowname, width, height)
{
	//if (! window.focus)return true;
	//var href;
	//if (typeof(mylink) == 'string')
	   //href=mylink;
	//else
	   //href=mylink.href;
	window.open(mylink, windowname, 'width=' + width + ',height=' + height + ',scrollbars=no');
	//return false;
}