/*
*************************************************

Pop Up Window Close Javascript

Created by Bob Schwartz
http://www.fotografics.it

*************************************************
*/
// Onload functions
window.onload = function() {
 toolLinks();
}
 
function toolLinks(){
	var container = document.getElementById("cl");
	var itemlink = createLink('#', 'chiude', closeWindow);
	container.appendChild(itemlink);
}

function closeWindow() {
	window.close();
}
function createLink(url,text,func){
	var temp = document.createElement('a');
	temp.setAttribute('href', url);
	temp.appendChild(document.createTextNode(text));
	temp.onclick = func;
	return temp;
}

