/*-----------------------------------------------------------------------------
===============================================================================
- Create: July 23, 2008
- Create By: Phoenix Snake @ C2P Thailand
- http://www.c2pthailand.com
===============================================================================
-----------------------------------------------------------------------------*/
function changeModule( destination )
{
	var vp = document.getElementById( "videoViewport" );
	vp.src = destination;
    
	var raw = destination.split( "/" );
	var target = raw.length - 1;

	var req = new Image();
	req.src = "stat.php?actioncode=moduleview&id=" + raw[ target ];
    document.cookie = "currentMod=" + raw[ target ];
}

function changeQuizModule( destination )
{ 
	//var raw = destination.split( "/" );
	//var target = raw.length - 1;

    document.cookie = "currentMod=" + destination; //+ raw[ target ];

	window.location = window.location;
}

function wish( command, wishID ){
   var o = document.getElementById( "carry" );
   o.command.value = command;
   o.primarykey.value = wishID;
   o.submit();
}

function fullfillWish( wishID ){
   var formal_address = "formal-address-" + wishID;
   var o = document.getElementById( formal_address );
   o.className = "";
}


function special_wish_type(){
   var f = document.getElementById( "wish-item-form" );
   var dynamic_part = document.getElementById( 'd-part' );
   var m = document.getElementById( "help-1" );
   
   if( f.wish_type.value == "1" ){
      dynamic_part.style.display = "none";
      f.request.value = "private-wish";
      m.innerHTML = "Suggest and share your wish with the Wish Whizard. This wish will remain between you and the Wish Whizard and <b style=\"color: #006600\">not be a wish listed in the public area.</b>";
   }else{
      dynamic_part.style.display = "block";
      f.request.value = "suggest-wish-list";
      m.innerHTML = "Suggest and share your wish with the Others. This wish will be <b style=\"color: #006600\">listed in the public area</b>.";
   }

}

