function openPage(strLocation, winWidth, winHeight)
{
if(strLocation.length > 0)
{
openNewWindowFullFeatures(strLocation, winWidth, winHeight);
}
}
function populateBrandsDropDownMenu()
{
if($('selBrandsNavigationContainer'))
{
$('selBrandsNavigationContainer').innerHTML = "
";
}
}
function openNewWindowFullFeatures(strURL, intWidth, intHeight)
{
intLeft = (window.screen.width - (intWidth))/2;
intTop = (window.screen.height - (intHeight))/2;
objWindow = window.open(strURL,'_blank', 'width=' + intWidth + ', height=' + intHeight + ', left=' + intLeft + ', top=' + intTop + ', location=yes, titlebar=yes, toolbar=yes, fullscreen=no, scrollbars=yes, resizable=yes, menubar=yes, status=yes');
}
Event.observe(window, "load", function(){populateBrandsDropDownMenu();});
function test()
{
alert('test3434');
}