// JavaScript Document
function openPopup()
{
	var CSS = '<style type="text/css" media="all">#award_popup{width:922px; height:716px;position:absolute; z-index:200;padding:30px; background:#333333;}#award_popup #close{position:absolute;right:1px;top:1px;width:30px;height:30px;float:right;color:#FFCC00;font-size:25px; line-height:30px;text-align:center; z-index:300;background:#FFFFFF; border:1px solid #FFCC00;font-family:Arial, Helvetica, sans-serif; cursor:pointer; font-weight:bold;}</style>';	
	var img = "<div id='award_popup'><div id='close' title='Close This'>X</div><img src='images/Award_2.jpg' alt='Wold Brand Congress 2011' title='Wold Brand Congress 2011' /></div>";
	document.write(CSS);
	document.write(img);
	var popup = document.getElementById("award_popup");
	var closeBTN = document.getElementById("close");
	popup.style.left = ((screen.width - 1003)/2)+'px';
	popup.style.top = '0px';
	closeBTN.onclick = function()
	{
		popup.style.display = 'none';
	}
	
}
openPopup();
