function slideshow_DoFSCommand(command, args) { 

    if (command.substring(0, 10) == 'FSCommand:') {
        command = command.substring(10);
    }
		
    if (command == 'rateThis') {
        popUp(args,'rate');

    } else if (command == 'emailThis') {
        popUp(args,'share_with_friend');

    } else if (command == 'showAdFor') {
    	//alert('ad should change');
        document.getElementById('adver').src = document.getElementById('adver').src;

    } else if (command == 'showWarning') {
        // for error messages from the client
        alert(args);
    };
};

function petshow_DoFSCommand(command, args) { 

    if (command.substring(0, 10) == 'FSCommand:') {
        command = command.substring(10);
    }
		
    if (command == 'newGallery') {
        popUp(args,'gallery');

    } else if (command == 'showWarning') {
        // for error messages from the client
        alert(args);
    };
};
