/**
 * Simple JQuery Plugin to give basic trace box
 * Author: Keith Deverell 2008
 */

var debug = {
    make: function(id,url,w,h) 
	{
		$('body').append('<div id="debug"></div>');
		$('#debug').css ({
			position:'absolute',
			right:'0px',
			top:'0px',
			width:'500px',
			height:'300px',
			overflow:'auto',
			border:'1px solid red',
			background:'white',
			opacity:'0.5',
			'z-index':'1000'
		})
	},
	trace: function(arg)
	{
		var s = '<br />'+arg
		$('#debug').append(s);
	}
}



