function openFullWindow(url,anc) {
	var w = screen.width; //fixed width
	var h = screen.height; //fixed height
	leftPosition = 0;	
	topPosition = 0;	
	var windowprops = 'width=' + w + ',height=' + h + ',top='+ topPosition +',left='+ leftPosition +',toolbar=no,location=no,directories=no,status=no,scrollbars=yes,menubar=no'; //set popup window properties
	if (anc) url = url.split('#')[0]+'#'+anc;
	var popup = window.open(url,'remote',windowprops); // open popup window with properties
	popup.moveTo(0,0)
	popup.resizeTo(screen.width,screen.height);
}

