﻿//loadAPI();
function loadAPI(o) {

    error = false;
    errorMsg = "";
    width = 300;
    if (o.vendorID == null || o.vendorID <= 0) {
        error = true;
        errorMsg = errorMsg + "Vendor ID is required<br/>";
    }
    if (o.width != null) {
        if (o.width < 300) {
            error = true;
            errorMsg = errorMsg + "Width is too small<br/>";
        } else if (o.width > 500) {
            width = 500;
        } else {
            width = o.width;
        }
    }
    height = 800;
    if (o.height != null) {
        if (o.height < 300) {
            error = true;
            errorMsg = errorMsg + "Height is too small<br/>";
        } else {
            height = o.height;
        }
    }
    var destDiv = document.getElementById("windshieldsAPI");
	destDiv.style.width = width+"px"
    if (error == false) {
        destDiv.innerHTML = "<iframe id=\"apiIframe\" src=\"http://www.windshields.com/api.aspx?vendorid=" + o.vendorID + "\" width=\"" + width + "\" height=\"" + height + "\" frameborder=\"0\" />" + destDiv.innerHTML;
    } else {
        destDiv.innerHTML = destDiv.innerHTML + errorMsg;
    }
}