openWin = null;

function openWindow(whatFile, whatWindow, width, height)
{
	var openNew = true;

	if (openWin)
	{
		if (!openWin.closed)
		{
		//	openNew = false;
		}
	}

	if (openNew)
	{
		var winl = (screen.width / 2) - (width / 2);
		var wint = (screen.height / 2) - (height / 2);

		openWin = window.open(whatFile,whatWindow,'width='+width+',height='+height+	',location=0,menubar=0,scrollbars=1,directories=0,status=0,resizable=0,align=center,top='+wint+',left='+winl);
	}

	openWin.focus();
}

function addBookmark()
{
	if (window.external)
	{
		external.AddFavorite ("http://www.heygames.com", "HeyGames.com - Free Online Multiplayer Games Community!");
	}
	else
	{
		alert ("Click on Bookmark This Page or Add to Favorites!");
	}
}

