 <!-- This function is used to create a pop-up window for the comment card -->


var newwindow;
 function CommentPop(url)
 {
 	newwindow=window.open(url,'name','height=550,width=500');
    if(window.focus) {newwindow.focus()}
 }
 