/**
 * Copyright(c) 2006-2008, Razorfang Productions
 */
Ext.namespace('Web.Surveys');

/**
 * This JS is used to display the IT Job Form
 * 
 * @author Jeff Lester
 * @Date Aug 21, 2008
 */

/*************************************************
 * The actual Job Form
 ************************************************/
Web.Surveys.SurveyForm = function(svyTitle,id){
	
	var form = new Ext.Window({
		baseCls: 'x-plain'	
	});
	
	var window = new Ext.Window({
		title:svyTitle,
		width: 600,
		height: 500,
		autoScroll: true,
		iconCls: 'icon-survey'
	});
	
	window.show();
	window.getUpdater().update({
		url: "index.cfm?event=popup.surveys.viewForm&id=" + id,
		nocache: true,
		scripts: true,
		text: "Loading Page...",
		timeout: 30
	});
}