
function openWindow(contentURL,windowWidth,windowHeight) {
	//var widthHeight = 'top=20px,left=20px,toolbar=no,directories=no,status=no,menubar=no,scrollbars=yes,location=no,resizable=yes,titlebar=no,fullscreen=no';
var widthHeight = 'height=' + windowHeight +'px,width=' + windowWidth +'px,top=20px,left=20px,toolbar=no,directories=no,status=no,menubar=no,scrollbars=yes,location=no,resizable=yes,titlebar=no,fullscreen=no';	
	var newWindow = null;
    var windowName = 'famForu';
	newWindow = window.open(contentURL,windowName,widthHeight);
	
	if (newWindow == null){ window.alert('Please disable the popup blocker of your Browser'); }
	newWindow.focus();
	//<p><a href="#" onclick="openWindow('codeBrowser','codeBrowser',1024,700)">Launch Code Browser &raquo;</a></p>
}