function cartoon(id)
{
	var windowname = 'cartoons';
	var width = 600;
	var height = 500;

	var screenX = (screen.width / 2 - width / 2);
	var screenY = (screen.height / 2 - height / 2);
	var features= 'width=' + width + ',height=' + height;
	features += ',screenX=' + screenX + ',left=' + screenX;
	features += ',screenY=' + screenY  +',top=' + screenY;
	features += ',scrollbars = yes, resizable = yes';
	var mywin = window.open('/dev/cartoons/popup/'+id+'/', windowname, features);
											
	if( mywin ) 
		mywin.focus();
}
