 
function popup(url, width, height, name)



{



	var settings = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=" + width + ",height=" + height;







	var oNewWin = window.open(url,name,settings);



}







function popup_image(url, width, height, name){



	var settings = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,left=100,top=100,width=" + width + ",height=" + height;







    var oNewWin = window.open('about:blank', null, settings);



    



    var sHTML = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">'



		+ "<HTML><HEAD>"



		+ "<TITLE>" + name + "</TITLE></HEAD>"



		+ "<BODY style='margin:0; background-color:#000000;' onload='self.focus()' onblur='self.close()'>"



		+ "<img src='" + url + "' width='" + width + "' height='" + height + "' alt='" + name + "' />"



		+ "</BODY></HTML>";



    oNewWin.document.writeln(sHTML);



    oNewWin.document.close();



}


function trigger(obj)
{
	obj.parentNode.className = obj.parentNode.className == 'open' ? '' : 'open'; return false;
}

