var msg_config={
author: "Tony Ogundipe",
title: "Dynamic MessageBox",
link: "http://www.javascriptkit.com",
description: "Customized MessageBox Script",
language: "en",
instanceName:"msgbox_display",  //instance name of message box
instanceName2:"msgbox_display_shadow",  //instance name of shadow
minWidth:"200",  //minimum width

imagePath: "images/",  //image path
iconWidth: "32",  //size of image icons

ajaxError: "The requested page is not available",  //when page cannot be found

defaultTitle: "Message",  //default message title

//style sheet for table
style: [
{
cover: "position:absolute;z-index:100;",  //it is best to leave this one empty
title: ";background:#6D84B4;color:#ffffff;padding-left:12px;font:bold 12px tahoma;padding-top:5px;padding-right:5px;padding-bottom:5px;",
text: ";margin-top:10px;margin-bottom:10px;background:#FFF9D7;padding-top:12px;padding-bottom:12px;padding-left:11px;padding-right:10px;font:11px tahoma",
btn: ";background:#F2F2F2;padding:5px;text-align:right",
action: ";background:#3B5998;color:#ffffff;font:11px tahoma;padding:5px;cursor:pointer;cursor:hand;",
close: ";background:#ffffff;color:#000000;font:11px tahoma;padding:5px;cursor:pointer;cursor:hand;"
}
],

//style sheet for shadow
shadow: [
{
line1: ";width:200px;height:100px;position:absolute;left:0;top:0;background:#ffffff;display:none;",
line2: ";filter:alpha(opacity=60);-moz-opacity:.60;opacity:.60;"
}
],


//image icons
images: [
{
critical: "critical.gif",
information: "information.gif",
question: "question.gif"
}
],

imageCache: "critical|information|question",  //cache images

//message table template
table: [
{
line1: "<table cellspacing=0 cellpadding=0>",
line2: "<tr><td>#title</td></tr><tr><td>#text</td></tr>",
line3: "<tr><td><nobr><input type='button' value='#action'> <input type='button' value='#close'></nobr></td>",
line4: "</tr></table>"
}
]


}





