// JScript File
jQuery(document).ready(function () {
 	jQuery.noConflict();  
 	jQuery("body").prepend('<div id="credits"></div>');
 	jQuery("#credits").dialog({
  	bgiframe: true,
    autoOpen: false,
    width: 300,
    height: 229,
    closeOnEscape: false,
    modal: true,
    resizable: false,
    draggable: false
  });      
});

function credits(){
    jQuery("#credits").load("credits.htm",'',function(){
        jQuery("#credits").dialog('open');
    }); 
}
