// JavaScript Document
function InjectIE7() {
	if ( Browser.ie && Browser.version <=7){
	var elIE7 = new  $(Element('div',{'id':'ie7'}));
	elIE7.set( 'html', '<h4>You\'re using an old version of Internet Explorer...This page will not function properly</h4><p>Upgrade IE or get another browser such as <a href="http://www.getfirefox.com" target="_blank">Firefox</a>!</p>');
	elIE7.inject( 'container', 'top');
	}
}

function testie7() {
	var elIE7 = new  $(Element('div',{'id':'ie7'}));
	elIE7.set( 'html', '<h4>You\'re using an old version of Internet Explorer...This page will not function properly</h4><p>Upgrade IE or get another browser such as <a href="http://www.getfirefox.com" target="_blank">Firefox</a>!</p>');
	elIE7.inject( 'container', 'top');
}

