function onlineBooking() {
    // parameters
	// object id to display
	this.objectID = 0;
	// alignment for iframe
	this.align = 'left';
	// iframe width
	this.width = 650;
	// iframe height
	this.height = 450;
	// iframe border
	this.border = 0;
	// scrolling
	this.scrolling = 'auto';
	// resize browser window
	this.resize = 'no';
	// style sheet
	this.styleText = 'font-family:Verdana,helvetica,sans-serif;font-size:10pt;color:#000033';
	this.styleLink = 'color:#999999;text-decoration:underline';
	this.styleHeadline = 'color:#FFFFFF;background-color:#9399CC';
	
	// output booking form
	this.draw = function () {
		document.write('<div align="'+this.align+'"><iframe width="'+this.width+'" height="'+this.height+'" frameborder="'+this.border+'" scrolling="'+this.scrolling+'" src="http://www.gobc.ca/gobcbooking.php?objectID='+this.objectID+'&st='+escape(this.styleText)+'&sl='+escape(this.styleLink)+'&sh='+escape(this.styleHeadline)+'"><p>Sorry, your browser does not support iframes.</iframe></div>');
		if (this.resize == 'yes') {
			window.resizeTo(this.width+50, this.height+100);
		}
	}
}
