function loadSWF(url){
	var so = new SWFObject(url, 'sampleSwf', '100%', '100%', '8', '#ffffff');
	so.write("flashcontent");
}

function articlePopUp(id) {
	var popurl = "company_article_frame.php"

	popurl = popurl + "?id=" + id;

	width = 700;
	height = 500;

	leftPosition = (screen.width)?(screen.width-width)/2:100;
	topPosition = (screen.height)?(screen.height-height)/2:100;
	popWidth = (parseInt(width)+22);
	popHeight = (parseInt(height)+26);
	scrollbarsYesNo = "no";

	if ((leftPosition < 0) || (topPosition < 0)) {
		leftPosition = 0;
		topPosition = 0;
		popWidth = screen.width-100;
		popHeight = screen.height-100;
		scrollbarsYesNo = "yes";
	}

	popsettings = 'width='+popWidth+',height='+popHeight+',top='+topPosition+',left='+leftPosition+',scrollbars='+scrollbarsYesNo+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';

	popup = window.open(popurl, "article" + id, popsettings);
}
