function newRef(address)
{
	var newWindow;
	newWindow = window.open(address, 'myWindow', 'width=700, height=600, left=0, top=0, screenX=0, screenY=0, scrollbars=yes, menubar=yes, resizeable=yes');
	
	if (newWindow == null)
	{
		alert('A popup blocker is blocking this page. In order to view some pages of Gamewoods web site you must allow popups.');
	}
}