function VehicleDetailsControl()
{
}

VehicleDetailsControl.VehicleDetailsPDF = function(eventSource)
{    	
    var width = 850;
	var height = 650;
	
	xOffset = (window.screenLeft + (document.body.clientWidth / 2)) - width / 2;
	yOffset = (window.screenTop + (document.body.clientHeight / 2)) - height / 2 - 30;
    
    var url = document.location.href + "/";
    var position = url.indexOf("?");
    
    if(position > 1)
    { 
        url += '&doPDF=true'
    }
    else
    {
        url += '?doPDF=true'
    }
    
	var winOpts = 'toolbar=no, menubar=no, scrollbars=yes, location=no, resizable=yes, status=no, width=' + width + ', height=' + height;

	var win = window.open(url, 'PDF', winOpts);
	    
	win.focus();
}

VehicleDetailsControl.ShowContactUs = function ShowContactUs(url)
{    
    var width = 650;
	var height = 550;
	
	xOffset = (window.screenLeft + (document.body.clientWidth / 2)) - width / 2;
	yOffset = (window.screenTop + (document.body.clientHeight / 2)) - height / 2 - 30;
    
	var winOpts = 'toolbar=no, menubar=no, scrollbars=auto, location=no, resizable=yes, status=no, width=' + width + ', height=' + height;

	var win = window.open(url, 'ContactUs', winOpts);
	    
	win.focus();
}