function openFtpWindow(){ new Windoo({ "type": "iframe", "url": "/net2ftp", "width": 900, "height": 600, "top": 100, "left": 300, "title": ftpWinNum + " :: Utropicmedia net2ftp", "resizeLimit": { "x": { "0": 400 }, "y": { "0": 330 } }, "ghost": { "resize": true }, "container": false }) .show(); ftpWinNum++; } function openPxyWindow(){ new Windoo({ "type": "iframe", "url": "/binfo", "width": 900, "height": 600, "top": 100, "left": 300, "title": pxyWinNum + " :: Utropicmedia web proxy", "resizeLimit": { "x": { "0": 400 }, "y": { "0": 330 } }, "ghost": { "resize": true }, "container": false }) .show(); pxyWinNum++; } function openNQWindow() { new Windoo({ "type": "iframe", "url": "https://www.utropicmedia.net/netquery/nquser.php", "width": 900, "height": 600, "top": 100, "left": 300, "title": "Utropicmedia Network Tools", "resizeLimit": { "x": { "0": 400 }, "y": { "0": 330 } }, "ghost": { "resize": true }, "container": false }) .show(); } function auracleLogin(){ var user = $('newuid').get('value'); var pass = $('password1').get('value'); var myRequest = new Request({ url: '/auracle/xmlrpc/request.php', method: 'post'}); myRequest.send("action=login&username=" + user + "&password=" + pass); } function auracleLogout(){ var myRequest = new Request({ url: '/auracle/', method: 'get'}); myRequest.send("logout=1"); document.cookie = 'uip=null; expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/;domain=.utropicmedia.net'; } function startChat(){ window.open( "http://utropicmedia.net/auracle/chatpane.php","chat", "width=500,height=500,top=150,left=150,resizable=yes,scrollbars=no,menubar=no,toolbar=no,status=no,location=no" ); }