// JavaScript Document

// Class to hold product item data
function ProductData(pn, name, descrip, image_file, thumb_file, install_file, plan_file) {
	this.prod_pn = pn;
	this.prod_name = name;
	this.prod_descr = descrip;
	this.prod_image_file = image_file;
	this.prod_thumb_file = thumb_file;
	this.prod_install_file = install_file;
	if (plan_file)
		this.prod_plan_file = plan_file;
	else
		this.prod_plan_file = '';
	
}

