var fDesc=new Array();
fDesc[0] = "VMK Pal is free utility software for Disney's Virtual Magic Kingdom. You can actually play VMK right inside of VMK Pal, just as you normally would in a regular web browser.
Main features:
- Login to VMK with the click of a button
- Securely store login information for each VMK Player
- Take pictures of the VMK screen with the click of a button
- Save, crop, and manage pictures which you've taken inside the game
- Store and manage VMK virtual prize codes which you've earned through games and quests
- Repeat helpful phrases with a keystroke
- Magnify a portion of the screen
- See the current time in VMK (Pacific Time)
- Receive alerts for upcoming VMK events
- Save and visit a list of your favorite VMK web sites";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}