function brandScroll()
{
	//alert('d');
	AjaxRequest.get(
		{
			'url':'./get_brand_list.php'+'?ms=' + new Date().getTime()
			,'onLoading':function(req)
				  { 
				  }
			,'onSuccess':function(req)
				  { 
					var output = req.responseText;					
					//alert(output);
					document.getElementById('slides').innerHTML = '';
					document.getElementById('slides').innerHTML = output;	
					init();
				  } 
			}
		);
}

function openpopupwindow(filename)
{
	var pages=filename;
	window.open(pages,"mywindow","menubar=1,width=750,height=450,scrollbars=yes,resizable=no");
}

function openprintpopupwindow(filename)
{
	var pages=filename;
	window.open(pages,"mywindow","width=500,height=450,left=190,top=90,scrollbars=no,resizable=no");
}
function openemiwindow(filename)
{
	var pages=filename;
	window.open(pages,"mywindow","width=500,height=190,left=190,top=90,scrollbars=no,resizable=no");
}

