/*
 *  craxfunc.js: Javascript interface for CR plug-in (Interface) 
 *  version 0.0.2 (Apr. 4 2008)
 *  (c) 2008 Splume Corporation.
 *
 *  This script uses Prototype.js (see http://www.prototypejs.org/).
 *
 */

function launchToCellByURL(url,str)
{
	return top._launchToCellByURL(url,str);
}

function launchToCellByURLWithPosition(url,position,rotation) 
{
	return top._launchToCellByURLWithPosition(url,position,rotation);
}

function launchToMyRoom(int_user_id)
{
	return top._launchToMyRoom(int_user_id);
}

function getCurrentRoomname()
{
	return top._getCurrentRoomname();
}

function getCurrentRoomURL()
{
	return top._getCurrentRoomURL();
}

//------------
// to be deleted
//

function rightIFrame_jump(url)
{
	var right = "rightIFrame";
    $(right).src = url;
}

function setRoomnameText(str)	// delete later
{
}


