// JavaScript Document
function fullScreen(url){
	//alert(url);
	var wWidth = (window.screen.width) ;
	var wHeight = (window.screen.height) ;
	
	window.open(url,'newWin','width='+wWidth+',height='+wHeight+',left=0 ,top = 0 ,  toolbar=No,location=Yes,scrollbars=Yes,status=No,resizable=No,fullscreen=No');
}