function createWindowLogo(URL, TITLE, DESCRIPTION, LINK, WIDTH, HEIGHT) {
specs = "left=50,top=50,width=" + (WIDTH+75) + ",height=" + (HEIGHT+250);
text = "<html><head><title>Redhead Portfolio</title><link href='styles.css' rel='stylesheet' type='text/css'></head><body bgcolor='#FFCCCC'><table width='10%' border='0' align='center' cellpadding='0' cellspacing='0'><tr><td width='10'><img src='images/popupimageborder_r1_c1.jpg' width='10' height='10'></td><td><img src='images/popupimageborder_r1_c3.jpg' width='100%' height='10'></td><td width='18' align='right'><img src='images/popupimageborder_r1_c5.jpg' width='18' height='10'></td></tr><tr><td class='popUpSides'>&nbsp;</td><td align='center'><img src='" + URL + "'></td><td class='popUpSidesRight'>&nbsp;</td></tr><tr><td><img src='images/popupimageborder_r5_c1.jpg' width='10' height='18'></td><td><img src='images/popupimageborder_r5_c3.jpg' width='100%' height='18'></td><td align='right'><img src='images/popupimageborder_r5_c5.jpg' width='18' height='18'></td></tr></table><table border='0' width='350' align='center'><tr><td><font color='#000000' size='1' face='Verdana'><br><center><strong>'" + TITLE + "'</strong></center><br>'"+ DESCRIPTION +"'</font><br><br></td></tr></table></body></html>";
newwin = window.open("", "newwin", specs);
newwin.document.open();
newwin.document.write(text);
newwin.document.close();
}