function getCount(post_id) { var entries = new Array; var entries_posts = new Array; var total_posts = 1; var last_poster = new Array; entries[0] = "WebCam"; entries_posts[0] = 6; last_poster[0] = "Mark Graham"; for (x=0;x<=total_posts;x++) { if (entries[x] == post_id) { var last_x = x; var not_there = 0; break; } else { var not_there = 1; } } if (not_there == 1) { document.write("Click here to comment"); } else { document.write("Comments (" + entries_posts[last_x] + ", last post by " + last_poster[last_x] + ")"); } } function blogSpeak(post_id) { var URL = 'http://www.markandlinda.net/scripts/Commenting/blogspeak.php?postid=' + post_id; window.open(URL,'blog','width=500,height=500,scrollbars=yes,resizable=yes'); }