function openFullWindow(url) {
	var w = screen.width;
	var h = screen.height;
	
	leftPosition = 0;
	topPosition = 0;
	
	if (h<800)
	{
		var windowprops = 'width=' + w + ',height=' + h + ',top='+ topPosition +',left='+ leftPosition +',toolbar=no,location=no,directories=no,status=no,scrollbars=yes,menubar=no';
	} else
	{
		var windowprops = 'width=' + w + ',height=' + h + ',top='+ topPosition +',left='+ leftPosition +',toolbar=no,location=no,directories=no,status=no,scrollbars=no,menubar=no';
	}
	var popup = window.open(url,'remote',windowprops);
	popup.moveTo(0,0)
	popup.resizeTo(screen.width,screen.height);
	popup.focus();
}