/**
 * @author ragnoff
 */
Ext.onReady(function(){
	Ext.BLANK_IMAGE_URL = 'images/s.gif';
	
	var win = new Ext.Window({
		id: 'myWin',
		// title: 'Register for Veterans Job & Resource Fair',
		height: 620,
		width: 720,
		shadowOffset : 6,
		closable: false,
		draggable: false,
		resizable: false,
		layout: 'border',
		items: [{
			region: 'north',
			xtype: 'panel',
			border: false,
			height: 100,
			html: '<div class="wow"><img src="images/default.jpg"></div>'
		},{
			region: 'center',
			id: 'wiz',
			xtype: 'panel',
			layout: 'card',
			deferredRender : true,
			border: false,
			defaults: {
				frame: true
			},
			activeItem: 0,
					    // the panels (or "cards") within the layout
	    	items: [{
		        id: 'card-0',
				xtype: 'form',
				border: false,
				items: [{
					xtype: 'panel',
		            autoWidth:true,
		            autoHeight:true,
					html: '<b><p>Register for Veterans\' Job & Resource Fair</p></b><br><br>'
				},{
					id: 'noticeBoard',
					xtype:'panel',
		            autoWidth:true,
		            height:260
					// html: '<div class="cnf"><p>You have completed your registration and will receive a receipt via email.</p><p>Thankyou.</p></div>'
				},{
					xtype:'panel',
					layout: 'column',
		            autoWidth:true,
		            autoHeight:true,
					items: [{
						//title: 'col1',
						columnWidth: .5,
						html: '<br><br><p>AltaRegistration Support: 866-747-2874 x700<p><br><p>Supported Browsers:<br>IE7+, Firefox, Opera, Chrome, Safari<p></div>'
					},{
						//title: 'col1',
						columnWidth: .5,
						html: '<div align="right"><img src="images/uvc.gif" align="middle"><img src="images/ndia.gif" align="middle"></div>'
					}]
				}]					
		    }] // cards
		}]  // window items
	});  //  win
	
	var isExplorer6 = function() {
		var appVer = navigator.appVersion;
		appVer = appVer.split(';');
		if(appVer[1] == ' MSIE 6.0') {
			return true;
		}				
	}	
	
/*
 	if(isExplorer6()){
		Ext.getCmp('noticeBoard').html='<p>Your browser appears to be Internet Explorer 6. It does not support this application.</p><br>';
		Ext.getCmp('noticeBoard').html+='<p>To register online you can update your browser to Internet Explorer 8 <a href="http://www.microsoft.com/windows/internet-explorer/" target="_blank"><b>here</b></a></p><br>';
		Ext.getCmp('noticeBoard').html+='<p>To register by fax you can print the forms below and fax to <b>858-408-3611</b></p><br>';
		Ext.getCmp('noticeBoard').html+='<div class="cnf"><b><a href="job_fair_pdfs/Job_Fair_Info_Form.pdf">Job Fair Info Form</a>&nbsp; &nbsp; &nbsp;<a href="job_fair_pdfs/Job_Fair_Payment_Form.pdf">Job Fair Payment Form</a>&nbsp; &nbsp; &nbsp;<a href="job_fair_pdfs/Job_Fair_Sponsorships.pdf">Job Fair Sponsorships</a><br><br></b></div>';
		Ext.getCmp('noticeBoard').html+='<div><p>Jobseekers, see the flyer below<b></p><br></div>';
		Ext.getCmp('noticeBoard').html+='<div class="cnf"><a href="job_fair_pdfs/Job_Seeker_Information.pdf">Job Fair - Job Seeker Information</a></div>';
	}
	else{
		Ext.getCmp('noticeBoard').html='<p>To register online click <a href="signup.html"><b>here</b></a></p><br>';
		Ext.getCmp('noticeBoard').html+='<p>To register by fax you can print the forms below and fax to <b>858-408-3611</b></p><br>';
		Ext.getCmp('noticeBoard').html+='<div class="cnf"><b><a href="job_fair_pdfs/Job_Fair_Info_Form.pdf">Job Fair Info Form</a>&nbsp; &nbsp; &nbsp;<a href="job_fair_pdfs/Job_Fair_Payment_Form.pdf">Job Fair Payment Form</a>&nbsp; &nbsp; &nbsp;<a href="job_fair_pdfs/Job_Fair_Sponsorships.pdf">Job Fair Sponsorships</a><br><br></b></div>';
		Ext.getCmp('noticeBoard').html+='<div><p>Jobseekers, see the flyer below<b></p><br></div>';
		Ext.getCmp('noticeBoard').html+='<div class="cnf"><a href="job_fair_pdfs/Job_Seeker_Information.pdf">Job Fair - Job Seeker Information</a></div>';
	}
*/	
	
		Ext.getCmp('noticeBoard').html='<div><p>Veterans\' Job & Resource Fair for 2011 has been canceled.</p><br></div>';
	
	win.show();
	
	
});


