var ie  =(document.all)?1:0;
var DOM =(document.getElementById)?1:0;
var ns  =(document.layers)?1:0;

function init(img)
{
  if (ie) {
    document.all["title-img"].src = img;}
  if (DOM){
    document.getElementById("title-img").src = img;}
  if (ns) {
    document.layers["title-img"].src = img;}
}
function initlong(img)
{
  if (ie) {
    document.all["title-long-img"].src = img;}
  if (DOM){
    document.getElementById("title-long-img").src = img;}
  if (ns) {
    document.layers["title-long-img"].src = img;}
}
