function openFWin(url)
			{	
					
				LeftPosition = 80; //update this to reflect your popupu window position
				TopPosition = 450; //update this to reflect your popup window height  
					
					//this is the method that opens the window
					//change the width and height values to fit your content
				window.open(url, 'foot', 'width=500,height=100,top='+TopPosition+',left='+LeftPosition+',screenY='+TopPosition+',screenX='+LeftPosition+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,alwaysRaised=yes');				
			}
		


