function openBookmarkWindow(strURL)
{
var newWin = null;
var strOptions = "toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=640,height=640,left=25,top=25"
newWin = window.open(strURL, 'newWin', strOptions);
newWin.focus();
}