var win = null;

function carsalesPopUp(value, popUpName, height , width, left, top, scrollbars, location, menubar, resizable, toolbar)
{
    parms = "height=" + height + ", width=" + width +", left=" + left + ", top=" + top + ", location=" + location + ", menubar=" + menubar + ", scrollbars=" + scrollbars + ", resizable=" + resizable + ", toolbar=" + toolbar;
    win = window.open(value, popUpName, parms);
}


function partnerPopUp()
{   
    var siteUrl = document.forms["partnerLogo"].yourSite.options[document.forms["partnerLogo"].yourSite.selectedIndex].value;
    
    if(siteUrl == null || siteUrl==""){    
       return;
    }
    popupWin = window.open(siteUrl, "ControlWindow", "toolbar=yes,menubar=yes,location=yes,scrollbars=yes,resizable=yes,status=yes");
}

function doReport(str)
{
  var d = new Date();
  var t = d.getTime();
  document.images.hiddenImage.src=str+'&tm=' + t;
}
function carsalesPrint(loc)
{
  var str = 'reporting.do?reportId='+loc;
	print();
  doReport(str);	
}
function eightyPercentWindow(loc, title) 
{
	var hgt;
	var wdt;
	if (window.screen) {
		hgt = (window.screen.height * .8);
		wdt = (window.screen.width * .8);
	} else {
	    hgt = 500;
	    wdt = 500;
	}
	window.open(loc, "ArticleWindow", "toolbar=yes,menubar=yes,location=yes,height=" + hgt + ",width=" + wdt + ",scrollbars=yes,resizable=yes,status=yes");
}