var Char_Err = '';
Chat_Err = '<b>Chat room setup error:</b><br><br>';
if (typeof(chat_UID) == 'undefined'){
   document.write(Chat_Err + "You need to supply a variable called Chat_UID. Pleaser refer to your documentation for more information.");
}else if(typeof(chat_AC) == 'undefined'){
   document.write(Chat_Err + "You need to supply a variable called Chat_AC. Pleaser refer to your documentation for more information.");
}else if (chat_UID == ""){
   document.write(Chat_Err + "You need to supply a variable called Chat_UID. Pleaser refer to your documentation for more information.");
}else if(chat_AC == ""){
   document.write(Chat_Err + "You need to supply a variable called Chat_AC. Pleaser refer to your documentation for more information.");
}else if(isNaN(chat_UID)){
   document.write(Chat_Err + "Your Chat_AC should be numeric. Pleaser check the information you have entered.");
}else{
   var curLocation = document.location + '';
   document.write('<p align="center"><IFRAME src="http://www.chat-one.com/miniChat/RemotelyHostedminiChat.asp?UID=' + chat_UID + '&AC=' + chat_AC + '&URL=' + curLocation + '" frameborder="0" width="448" height="205" name="miniChat" scrolling="no" STYLE="background-color: transparent" allowTransparency="true">Sorry, you cannot chat because your browser does not support inline frames.</iframe><br><a href="http://www.tinit.co.uk/?s=miniChat" target="_blank">miniChat from TiNiT</a></p>');
}