function openNewWindow(url)
{  
	w = (document.all ? screen.width : screen.width) * 0.92;
    h = (document.all ? screen.height : screen.height-150) * 0.92;
    op = 'scrollbars=yes,toolbar=yes,location=yes,directories=yes,menubar=yes,resizable=yes,status=yes,width=' + w + ',height=' + h + ',screenX=0,screenY=0,top=0,left=0';
    com=open(url,'',op);
}
function toggleShops(obj, className)
{
	$('div.' + className).show();
	$(obj).remove();
	return false;
}

