// Pokémon Indigo main functions

function MM_reloadPage(init) 
{  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

function addFriend(form) 
{
	var friendUsername = form.addNewFriend.value;
	document.getElementById('flOverWaitScreen').style.display = 'block';
	document.getElementById('flWaitScreen').style.display = 'block';
	xajax_addFriend(friendUsername);
	return false;
}

function acceptFriend(friendID) 
{
	document.getElementById('flOverWaitScreen').style.display = 'block';
	document.getElementById('flWaitScreen').style.display = 'block';
	xajax_acceptFriend(friendID);
	return false;
}

function deleteFriend(friendID) 
{
	document.getElementById('flOverWaitScreen').style.display = 'block';
	document.getElementById('flWaitScreen').style.display = 'block';
	xajax_deleteFriend(friendID);
	return false;
}

function acceptAllInvitations() {
	document.getElementById('flOverWaitScreen').style.display = 'block';
	document.getElementById('flWaitScreen').style.display = 'block';
	xajax_acceptAllInvitations();
	return false;
}

function deleteAllInvitations() {
	document.getElementById('flOverWaitScreen').style.display = 'block';
	document.getElementById('flWaitScreen').style.display = 'block';
	xajax_deleteAllInvitations();
	return false;
}

function openMessage(messageID)
{
	document.getElementById('pmOverWaitScreen').style.display = 'block';
	document.getElementById('pmWaitScreen').style.display = 'block';
	xajax_openMessage(messageID);
	return false;
}

function closeMessage()
{
	document.getElementById('pmListZone').style.display = 'block';
	document.getElementById('openMessage').style.display = 'none';
	return false;
}

function blockTrainer(id) {
	
	var answer = confirm("Are you sure you want to block this user?")
		if (answer){
			
			document.getElementById('mainInfo').style.display = 'block';
			document.getElementById('mainInfoBG').style.display = 'block';
			document.getElementById('mainInfoContent').innerHTML = '<div style="float:right; padding:10px;"><a href="javascript:void(0);" onclick="document.getElementById(\'mainInfoBG\').style.display = \'none\'; document.getElementById(\'mainInfo\').style.display = \'none\';"><img src="img_library/icons/action_stop.gif" alt="Close this Screen" border="0" align="absmiddle" /></a> <a href="javascript:void(0);" onclick="document.getElementById(\'mainInfoBG\').style.display = \'none\'; document.getElementById(\'mainInfo\').style.display = \'none\';">Close Screen</a></div><div class="clear"><img src="http://staropramen.pokemonindigo.com/images/spacer.gif" alt="sp" /></div><div style="width:100%; text-align:center; margin-top:120px;"><img src="images/screen-loader.gif" alt="Loading" /></div><div class="clear"><img src="http://staropramen.pokemonindigo.com/images/spacer.gif" alt="sp" /></div>';
			xajax_blockTrainer(id);
			return false;
			
		} else {
			return false;
		}
	
}

function unblockTrainer(id) {

	xajax_unblockTrainer(id);
	return false;

}

function viewProfile(id) {
	document.getElementById('mainInfo').style.display = 'block';
	document.getElementById('mainInfoBG').style.display = 'block';
	document.getElementById('mainInfoContent').innerHTML = '<div style="float:right; padding:10px;"><a href="javascript:void(0);" onclick="document.getElementById(\'mainInfoBG\').style.display = \'none\'; document.getElementById(\'mainInfo\').style.display = \'none\';"><img src="img_library/icons/action_stop.gif" alt="Close this Screen" border="0" align="absmiddle" /></a> <a href="javascript:void(0);" onclick="document.getElementById(\'mainInfoBG\').style.display = \'none\'; document.getElementById(\'mainInfo\').style.display = \'none\';">Close Screen</a></div><div class="clear"><img src="http://staropramen.pokemonindigo.com/images/spacer.gif" alt="sp" /></div><div style="width:100%; text-align:center; margin-top:120px;"><img src="images/screen-loader.gif" alt="Loading" /></div><div class="clear"><img src="http://staropramen.pokemonindigo.com/images/spacer.gif" alt="sp" /></div>';
	xajax_viewProfile(id);
	return false;
}

function goTo(url, target) 
{
	if(target == "_blank") {
		window.open(url);
	} else {
		location = url;	
	}
	return false;
}