// JavaScript Document
var iebody = (document.compatMode && document.compatMode != "BackCompat")? document.documentElement : document.body;

function isIE()
{
	return true;
}

function ShowPictures( talent, page )
{	
	var url = 'client_my_view_talent_pics.php?page='+page;
	var params = 'talent_id='+talent;
	var ajax = new Ajax.Updater(
		"talentPictures",
		url,
		{
			method: 'get',
			parameters: params,
			onFailure: function()
			{
				alert('Something went wrong...')
			},
			onSuccess: function()
			{
				$("talentPictures").style.top = (document.all ? iebody.scrollTop : pageYOffset) + "px";
				$("picturesBg").style.top = (document.all ? iebody.scrollTop : pageYOffset) + "px";
				$("picturesClose").style.top = (document.all ? iebody.scrollTop : pageYOffset) + "px";
				
				$("talentPictures").style.display = "inline";
				$("picturesBg").style.display = "inline";
				$("picturesClose").style.display = "inline";
			}
		}
	);	
	
	//window.scrollTo(0, 0);
}

function ShowAgencyPictures( agency, page )
{	
	var url = 'client_my_view_agency_pics.php?page='+page;
	var params = 'agency_id='+agency;
	var ajax = new Ajax.Updater(
		"talentPictures",
		url,
		{
			method: 'get',
			parameters: params,
			onFailure: function()
			{
				alert('Something went wrong...')
			},
			onSuccess: function()
			{				
				$("talentPictures").style.top = (document.all ? iebody.scrollTop : pageYOffset) + "px";
				$("picturesBg").style.top = (document.all ? iebody.scrollTop : pageYOffset) + "px";
				$("picturesClose").style.top = (document.all ? iebody.scrollTop : pageYOffset) + "px";
				
				$("talentPictures").style.display = "inline";
				$("picturesBg").style.display = "inline";
				$("picturesClose").style.display = "inline";
			}
		}
	);
	
	//window.scrollTo(0, 0);
	$("talentPictures").style.top = window.pageYOffset+"px";
}

function ClosePictures()
{
	for( a = 0 ; a < document.forms.length ; a++ )
	{
		document.forms[a].style.display = "inline";
   	}
	
	$("talentPictures").innerHTML = "";
	$("talentPictures").style.display = "none";
	$("picturesBg").style.display = "none";
	$("picturesClose").style.display = "none";
}

function ChangePhoto( photoUrl )
{
	$("talentPictureBig").src = photoUrl;
}

window.onscroll = function()
{	
	$("picturesBg").style.top = (document.all ? iebody.scrollTop : pageYOffset) + "px";
	$("picturesClose").style.top = (document.all ? iebody.scrollTop : pageYOffset) + "px";
}