function MagWin(title,picture,width,height,descript){
if (document.all)
var xMax = screen.width, yMax = screen.height;
else
if (document.layers)
var xMax = window.outerWidth, yMax = window.outerHeight;
else
var xMax = 640, yMax=480;

var xOffset = (xMax - 200)/2, yOffset = 0;

var myPage;
var myWin;
var myOptions;
var picheight = height - 23;
myPage = "<html><head><title>";
myPage = myPage + title;
myPage = myPage + " - Task Developments Manchester UK</title></head><body topmargin=0 leftmargin=0 rightmargin=0 bottommargin=0 MARGINWIDTH=0 MARGINHEIGHT=0 bgcolor=#ffffff><center><table cellpadding=0 cellspacing=0 border=0><tr><td><img src=images/";
myPage = myPage + picture;
myPage = myPage + " width=";
myPage = myPage + width;
myPage = myPage + " height=";
myPage = myPage + picheight;
myPage = myPage + " border=0></td></tr><tr><td align=center><font size=1 face=verdana, arial, hevetica color=#000000><b>";
myPage = myPage + descript;
myPage = myPage + "</b></font></td></tr></table></center></body></html>";
myOptions = "menu=no,status=no,width=";
myOptions = myOptions + width;
myOptions = myOptions + ",height=";
myOptions = myOptions + height;
myOptions = myOptions + ",screenX=";
myOptions = myOptions + xOffset;
myOptions = myOptions + ",screenY=";
myOptions = myOptions + yOffset;
myOptions = myOptions + ",top=";
myOptions = myOptions + yOffset;
myOptions = myOptions + ",left=";
myOptions = myOptions + xOffset;
myWin = window.open('','',myOptions);
myWin.document.write(myPage);
myWin.document.close(); 
}
