/*=======================================================================================

	Description:  Common (and not so common) window functions utilizing JavaScript

	(c) 2003-2005 Keith Schmeichel, All Rights Reserved
	windowController by Keith Schmeichel
	http://www.theinternetprofessional.com
	sendittokeith@yahoo.com
	  
	 ----------------------------------------------------------------------------------------
	 Disclaimer:  This material is property of Keith Schmeichel, The Internet Professional
	 and may not be duplicated or used in any manner without the written consent of the
	 of the Author.  (c)2003-2005 All Rights Reserved
	 ----------------------------------------------------------------------------------------
	  
	  Made for:
	 
=======================================================================================*/

function employeeLargePopup(employeeID){
	
	var url = 'Employee/LargePic.aspx?id=' + employeeID;
	var features = 'width=267,height=400';
	var win = window.open(url,'LargePhoto',features);
	win.focus();
	
}