﻿/*
 * Embeds a Facility Map on the page
 *
 * Usage:
 *	myCamera = new FacilityObject(facility_id);
 *
*/

FacilityObject = function(id) {
    this.id = id;  
}

FacilityObject.prototype.getHTML = function() {
    var html = "<iframe frameborder='0' src='facilitymap.aspx?fmid=" + this.id + "' width='100%' height='100%'></iframe>";
    return html;
}

FacilityObject.prototype.write = function(elementId) {
    //alert(this.getHTML());
	if (elementId) {
		document.getElementById(elementId).innerHTML = this.getHTML();
	} else {
		document.write(this.getHTML());
	}		
}




