/***********************************************
* Popup windows
***********************************************/
	var newwindow;
	function poptastic(url)
	{
	newwindow=window.open(url,'name','height=650,width=900, resizable=yes, scrollbars=yes');
	if (window.focus) {newwindow.focus()}
	}

	var newwindow;
	function chat(url)
	{
	newwindow=window.open(url,'chatWindow','width=490,height=404,resizable=no,scrollbars=no,menubar=no,status=no');
	if (window.focus) {newwindow.focus()}
	}