function popupWindow(pictureURL) {
    var newwindow = window.open("","myWin","width=200, height=300, titlebar=no, toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no");
    with (newwindow)
    {
        var contents="<HTML><HEAD><TITLE>PictureGallery</TITLE></HEAD><BODY BGCOLOR='#FFFFFF' TEXT='#99CC00' LEFTMARGIN='0' TOPMARGIN='0'> \
        <IMG SRC='" + pictureURL + "'onLoad='javascript:window.resizeTo(this.width+10,this.height+30);'> \
        </BODY></HTML>";
        document.open("text/html");
        document.write(contents);
        document.close();
    }
    newwindow.focus();
}

function popUpExplanation(url) {
	newwindow=window.open(url,'name','height=500,width=400,titlebar=no, toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=no');
	if (window.focus) {newwindow.focus()}
	return false;
}
