
//function up_launchWM( userID, destinationUserID, destinationName ){	window.open( "/im/wm.php?strDestinationUserID=" + destinationUserID, "WMWindow_" + up_replaceAlpha(userID) + "_" + up_replaceAlpha(destinationUserID), "width=468,height=595,toolbar=0,directories=0,menubar=0,status=0,location=0,scrollbars=0,resizable=1" );}function up_launchUL( ){	window.open( "/im/ul.php", "UL_Window", "width=220,height=700,toolbar=0,directories=0,menubar=0,status=0,location=0,scrollbars=0,resizable=1" );}function up_replaceAlpha( strIn ){	var strOut = "";	for( var i = 0 ; i < strIn.length ; i++ )	{		var cChar = strIn.charAt(i);		if( ( cChar >= 'A' && cChar <= 'Z' )			|| ( cChar >= 'a' && cChar <= 'z' )			|| ( cChar >= '0' && cChar <= '9' ) )		{			strOut += cChar;		}		else		{			strOut += "_";		}	}		return strOut;}

/*
	##########################################################
	######### Developer: Gary Chi - garychi@ucla.edu #########
	##########################################################
*/

/*
	######### WebMessenger Launch Function #########
*/
function up_launchWM( userID, destinationUserID ) {
	var url	   		= 'http://www.nastylatina.com/up_webim.php?strDestinationUserID=' + destinationUserID;
	var windowname	= 'WMWindow_' + userID + '_' + destinationUserID;
	var width  		= 468;
	var height 		= 595;
	var left   		= (screen.width  - width)/2;
	var top    		= (screen.height - height)/2;
	var params 		= 'width='+width+', height='+height;
	
	params += ', top='+top+', left='+left;
	params += ', toolbar=0';
	params += ', directories=0';
	params += ', menubar=0';
	params += ', status=1';
	params += ', location=0';
	params += ', scrollbars=0'; 
	params += ', resizable=1';
	
	window.open(url, windowname, params);

	newwin = window.open(url, windowname, params);
	
	if (window.focus) {newwin.focus()}
	return false;	
	
}

/*
	######### Webchat Launch Function #########
*/
function up_launchChat(intPop) {
	var url			= (intPop == null) ? 'up_webchat.php' : 'up_webchat.php?intPop='+intPop; 
	var windowname	= 'UserplaneChatWindow';
	var width  		= 900;
	var height 		= 700;
	var left   		= (screen.width  - width)/2;
	var top    		= (screen.height - height)/2;
	var params 		= 'width='+width+', height='+height;
	
	params += ', top='+top+', left='+left;
	params += ', toolbar=0';
	params += ', directories=0';
	params += ', menubar=0';
	params += ', status=1';
	params += ', location=0';
	params += ', scrollbars=0'; 
	params += ', resizable=1';
	
	window.open(url, windowname, params);

	newwin = window.open(url, windowname, params);
	
	if (window.focus) {newwin.focus()}
	return false;	

}

/*
	######### Userlist Launch Function #########
*/
function up_launchUL() {
	var url	   		= 'up_userlist.php';
	var windowname	= 'UserplaneUserlistWindow';
	var width  		= 220;
	var height 		= 700;
	var left   		= 50;
	var top    		= 50;
	var params 		= 'width='+width+', height='+height;
	
	params += ', top='+top+', left='+left;
	params += ', toolbar=0';
	params += ', directories=0';
	params += ', menubar=0';
	params += ', status=1';
	params += ', location=0';
	params += ', scrollbars=0'; 
	params += ', resizable=1';
	
	window.open(url, windowname, params);

	newwin = window.open(url, windowname, params);
	
	if (window.focus) {newwin.focus()}
	return false;	

}




