/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


function include(filename)
{
	var head = document.getElementsByTagName('head')[0];

	var script = document.createElement('script');
	script.src = filename;
	script.type = 'text/javascript';

	head.appendChild(script)
}