/*
var oPopup = window.createPopup();
var oPopBody = oPopup.document.body;
    oPopBody.style.backgroundColor = "lightyellow";
    oPopBody.style.border = "solid black 1px";
    oPopBody.innerHTML = "Click outside <B>popup</B> to close.<br><br><br><br><br><br>sdfa";
    oPopup.show(100, 100, 180, 25, document.body);
*/

var popupWindow = null;
var popupWindowForSearch = null;

var oPopup = null;

function openPopup(url, name, scloll, width, height, top, left)
{
	var oTarget = window.open(url, name, 'scrollbars='+scloll+', toolbar=no, resizable=no, menubar=no, status=no, width=' + width + ', height=' + height + ', top='+top+', left='+ left + ', screenY=' + top);
	oTarget.focus();
	return oTarget;
}

function openFullPopup(name, url)
{
	var settings = 'scrollbars=yes,resizable=yes,dependent=yes,type=fullWindow,fullscreen';
	var oTarget = window.open(url, name, settings);
	oTarget.focus();
	//return oTarget;
}


function openSinglePopup()
{
/*
  alert(document.location + '\n' + 
  document.location.hash +'\n' +
  document.location.host +'\n' +
  document.location.hostname +'\n' +
  document.location.port +'\n' +
  document.location.href +'\n' +
  document.location.pathname +'\n' +
  document.location.protocol +'\n' +
  document.location.search +'\n' +
  document.location.hash +'\n'
  );
  */
  var name, _url, inner, scroll, a = openSinglePopup.arguments; 
  for(i=0; i< a.length; i++)
  {
    switch (i){
       case 0:
          name = a[i];
          break;
       case 1:
          _url = a[i];
          break;
       case 2:
          inner = a[i];
          break;
       case 3:
          scroll = a[i]; 
          break;
    }
  }
  scroll = scroll ? "yes" : "no";
  
	if (!winPos[name]) return;
	
	var url = _url ? _url : winPos[name].url;
	url = inner ? '../'+url : url;
	
	var width = winPos[name].width;
	var height = winPos[name].height;
	var top = winPos[name].posY;
	var left = winPos[name].posX;
	
	if (isNaN(window.screenY))
	{
		top = top + window.screenTop - document.body.scrollTop; //IE
		left = left + window.screenLeft - document.body.scrollLeft;
	}
	else
	{
		top = top + window.screenY + (window.outerHeight-24-window.innerHeight) - window.pageYOffset;
		left = left +window.screenX - window.pageXOffset;
	}
	
	if (popupWindow)
	{
		popupWindow.close();
		popupWindow = null;
	}
	else
		window.open(null, null, 'scrollbars=no, toolbar=no, resizable=no, menubar=no, status=no, width=50, height=50, top=2000, left=2000, screenY=2000, screenX=2000').close();
		
	popupWindow = openPopup(url, null, scroll, width, height, top, left)
	
}






function openSinglePopupForSearch()
{
  var name, _url, inner, scroll, a = openSinglePopupForSearch.arguments; 
  for(i=0; i< a.length; i++)
  {
    switch (i){
       case 0:
          name = a[i];
          break;
       case 1:
          _url = a[i];
          break;
       case 2:
          inner = a[i];
          break;
       case 3:
          scroll = a[i]; 
          break;
    }
  }
  scroll = scroll ? "yes" : "no";
	if (!winPos[name]) return;
	
	var url = _url ? _url : winPos[name].url;
	url = inner ? '../'+url : url;

	
	var width = winPos[name].width;
	var height = winPos[name].height;
	var top = winPos[name].posY;
	var left = winPos[name].posX;
	
	if (isNaN(window.opener.window.screenY))
	{
		top = top + window.opener.window.screenTop - document.body.scrollTop; //IE
		left = left + window.opener.window.screenLeft - document.body.scrollLeft;
	}
	else
	{
		top = top + window.opener.window.screenY + (window.opener.window.outerHeight-24-window.opener.window.innerHeight) - window.opener.window.pageYOffset;
		left = left +window.opener.window.screenX - window.opener.window.pageXOffset;
	}
	
	if (popupWindowForSearch)
	{
		popupWindowForSearch.close();
		popupWindowForSearch = null;
	}
	else
		window.open(null, 'PopupForSearch', 'scrollbars=no, toolbar=no, resizable=no, menubar=no, status=no, width=50, height=50, top=2000, left=2000, screenY=2000, screenX=2000').close();
		
	popupWindowForSearch = openPopup(url, 'PopupForSearch', scroll, width, height, top, left)
	
}



var winPos = {
				"ClientLogin":{"url":"popup01-client_login.htm","posX":210,"posY":226,"width":444,"height":190},
				"EmployeePortal":{"url":"popup02-employee_portal.htm","posX":210,"posY":246,"width":444,"height":293},
				"ContactUs":{"url":"popup03-contact_us.htm","posX":210,"posY":265,"width":444,"height":325},
				"SearchResults":{"url":"popup04-search_results.htm","posX":210,"posY":284,"width":444,"height":442},
				"EmailNotice":{"url":"popup05-email.htm","posX":360,"posY":265,"width":294,"height":218},
				"InTheNews":{"url":"popup06-news.htm","posX":496,"posY":132,"width":301,"height":504},
				"Subscribe":{"url":"popup07-subscribe.htm","posX":654,"posY":352,"width":306,"height":325},
				"TermsOfUse":{"url":"popup08-terms.htm","posX":210,"posY":289,"width":444,"height":442},
				"DirectionsParking":{"url":"DirectionsAndParking.aspx","posX":210,"posY":289,"width":444,"height":442},
				"IALF":{"url":"popup10-ialf.htm","posX":210,"posY":289,"width":444,"height":442},
				"EmploymentOp":{"url":"popup11-EmployOp.htm","posX":210,"posY":324,"width":432,"height":274},
				"ArtEnlarge":{"url":"popup17-art.htm","posX":560,"posY":130,"width":388,"height":578},
				"PhotoEnlarge":{"url":"popup18-photo.htm","posX":358,"posY":130,"width":450,"height":305},
				"More":{"url":"popup12-more.htm","posX":654,"posY":132,"width":306,"height":504},
				"Release":{"url":"popup13-release.htm","posX":654,"posY":132,"width":306,"height":516},
				"ReceivePR":{"url":"popup14-receive.htm","posX":654,"posY":352,"width":306,"height":285},
				"Article":{"url":"popup15-article.htm","posX":654,"posY":130,"width":506,"height":504},
				"Source":{"url":"popup16-source.htm","posX":654,"posY":350,"width":306,"height":274},
				"Registration":{"url":"about:blank","posX":210,"posY":265,"width":464,"height":390},
				
				"HotelAccommodations":{"url":"HotelAccommodations.aspx","posX":210,"posY":289,"width":444,"height":442},
				"LegalResources":{"url":"about:blank","posX":654,"posY":350,"width":306,"height":274},
				"PrintMedia":{"url":"about:blank","posX":654,"posY":350,"width":306,"height":274},
				"FAQ":{"url":"popup21-career_faq.htm","posX":210,"posY":289,"width":444,"height":442},
				"DiversityPolicy":{"url":"popup22-career_diversity.htm","posX":210,"posY":289,"width":444,"height":442},
				"MediaContact":{"url":"popup20-media_contact.htm","posX":359,"posY":350,"width":596,"height":274}
			}	
        //"MediaContact":{"url":"popup20-media_contact.htm","posX":654,"posY":350,"width":306,"height":274}			
			
/*
// from xls
//

var winPos = {
				"ClientLogin":{"url":"popup01-client_login.htm","posX":210,"posY":229,"width":444,"height":293},
				"EmployeePortal":{"url":"popup02-employee_portal.htm","posX":210,"posY":249,"width":444,"height":293},
				"ContactUs":{"url":"popup03-contact_us.htm","posX":210,"posY":269,"width":444,"height":285},
				"SearchResults":{"url":"popup04-search_results.htm","posX":210,"posY":289,"width":444,"height":442},
				"EmailNotice":{"url":"popup05-email.htm","posX":360,"posY":265,"width":294,"height":218},
				"InTheNews":{"url":"popup06-news.htm","posX":510,"posY":130,"width":301,"height":504},
				"Subscribe":{"url":"popup07-subscribe.htm","posX":654,"posY":350,"width":306,"height":274},
				"TermsOfUse":{"url":"popup08-terms.htm","posX":210,"posY":289,"width":444,"height":442},
				"DirectionsParking":{"url":"popup09-directions.htm","posX":210,"posY":289,"width":444,"height":442},
				"IALF":{"url":"popup10-ialf.htm","posX":210,"posY":289,"width":444,"height":442},
				"EmploymentOp":{"url":"popup11-EmployOp.htm","posX":210,"posY":329,"width":444,"height":274},
				"ArtEnlarge":{"url":"popup17-art.htm","posX":560,"posY":130,"width":388,"height":578},
				"PhotoEnlarge":{"url":"popup18-photo.htm","posX":360,"posY":130,"width":450,"height":326},
				"More":{"url":"popup12-more.htm","posX":554,"posY":130,"width":306,"height":504},
				"Release":{"url":"popup13-release.htm","posX":654,"posY":130,"width":306,"height":504},
				"ReceivePR":{"url":"popup14-receive.htm","posX":654,"posY":350,"width":306,"height":274},
				"Article":{"url":"popup15-article.htm","posX":654,"posY":130,"width":306,"height":504},
				"Source":{"url":"popup16-source.htm","posX":654,"posY":350,"width":306,"height":274},
				
				"HotelAccommodations":{"url":"popup19-hotels.htm","posX":210,"posY":289,"width":444,"height":442},
				"LegalResources":{"url":"about:blank","posX":654,"posY":350,"width":306,"height":274},
				"PrintMedia":{"url":"about:blank","posX":654,"posY":350,"width":306,"height":274},
				"FAQ":{"url":"popup21-career_faq.htm","posX":210,"posY":289,"width":444,"height":442},
				"DiversityPolicy":{"url":"popup22-career_diversity.htm","posX":210,"posY":289,"width":444,"height":442}
				
			}
*/