/* -----------------------------------------------
* Module House Of Joomla Pop Up On Top For Joomla 1.5
* Version 	: 1.0
* Created by : Morgan Grip Forweb / houseofjoomla.com
* License 	: http://creativecommons.org/licenses/by-nc-sa/3.0/
* Email 	: info@houseofjoomla.com
* Created on : 28 february 2009
* URL 	: www.houseofjoomla.com
  ------------------------------------------------ */

var newwindow;
function poptop(url, width, height, resizable, toolbar, scrollbars)
{
	 newwindow=window.open(url,'name','height='+height+',width='+width+',toolbar='+toolbar+',location=no,status=no,scrollbars='+scrollbars+',resizable=no');
   if (window.focus) {newwindow.focus()}
}

