function OpenNewWindow(picture, width, height) 
{
	xsize = width + 10;
	ysize = height + 35;
	ScreenWidth = screen.width;
	ScreenHeight = screen.height;
	xpos = (ScreenWidth / 2) - (xsize / 2);
	ypos = (ScreenHeight / 2) - (ysize / 2);
	POD_VISUAL = window.open("","picture","height=" + ysize + ",width=" + xsize + ",scrollbars=no,resizeable=no,toolbar=no,menubar=no,location=no,top=" + ypos + ",left=" + xpos);
	POD_VISUAL.document.write("<html><head><title>Free Hot Ones presents: MC Nudes!</title></head>");
	POD_VISUAL.document.write("<body bgcolor='#f8f9f4' leftmargin='0' marginheight='0' marginwidth='0' topmargin='0' link='#636C50' vlink='#636C50' alink='#636C50' onload='focus();'>");
	POD_VISUAL.document.write("<table align='center' border='0'><tr>");
	POD_VISUAL.document.write("<td align='center' valign='top'><a href=\"http://www.mc-nudes.com/potd/index.php?ccid=1353600\" target='_blank'>");
	POD_VISUAL.document.write("<img src='" + picture + "' border='1' alt='Click here for more Free Hot Ones from the home of MC Nudes!' >");
	POD_VISUAL.document.write("</a></td></tr><tr></table>");
	POD_VISUAL.document.write("</body></html>");
	POD_VISUAL.document.close();
}