function popupwindow(url)
{
		mywindow = window.open(url, 'detail', 'status=no,toolbar=no,location=no,menubar=no,scrollbars=yes,resizable=yes,width=500,height=500');
		mywindow.location = url;
		mywindow.moveTo(0,0);
}

function popupwindowwidth(url, wwidth)
{
		mywindow = window.open(url, 'Tracker', 'status=no,toolbar=no,location=no,menubar=no,scrollbars=yes,resizable=yes,width=' + wwidth + ',height=500');
		mywindow.location = url;
		mywindow.moveTo(0,0);
}

function popupwindowwidthheight(url, wwidth, wheight)
{
		mywindow = window.open(url, 'Tracker', 'status=no,toolbar=no,location=no,menubar=no,scrollbars=yes,resizable=no,width=' + wwidth + ',height=' + wheight +'');
		mywindow.location = url;
		mywindow.moveTo(0,0);
}

function popupwindowtools(url)
{
		mywindow = window.open(url, 'Tracker', 'status=no,toolbar=yes,location=no,menubar=no,scrollbars=yes,resizable=yes,width=600,height=400');
		mywindow.location = url;
		mywindow.moveTo(0,0);
}

function load_del()
{
	window.open('http://del.icio.us/post?v=4&noui&jump=close&url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title), 'delicious','toolbar=no,width=700,height=400');
}