var myHeight;
var myWidth;

function bigpic(URL, WINTITLE, WIDTH, HEIGHT) {
var name = navigator.appName
myHeight = HEIGHT + 16;
myWidth = WIDTH;
if (name == "Microsoft Internet Explorer") {
	myHeight += 31;
	myWidth += 12;
}

text = "<html><head><title>" + WINTITLE + " - Island Girl (Captiva, Florida)</title></head>";
text += "<body topmargin='0' leftmargin='0' marginheight='0' marginwidth='0' bgcolor='#B4E6FF' link='blue' alink='blue' vlink='blue' onLoad='top.window.focus()'";
text += "><center><font size='2' face='Arial, Swiss'><b><a href='http://www.captivaislandgirl.com' target='_blank'>www.CaptivaIslandGirl.com</a></b></font><BR>";
text += "<img src='" + URL + "' border=0></center></body></html>";

poppic = window.open("","picwin","width=100,height=100,resizable=yes");

setTimeout("update()",10);
}

function update() {
poppic.document.open();
poppic.document.write(text);
poppic.document.close();
poppic.document.close();
poppic.resizeTo(myWidth, myHeight);
}