

var MAIN_SITE_URL = "http://computer12/cloghrancarsales_new/";
//var MAIN_SITE_URL="http://www.cloghrancarsales.com/";

function opwin_print(car_id)
{
 window.open(MAIN_SITE_URL+"car_details_popup.php?car_id="+car_id,car_id,"location=0,toolbar=no,scrollbars=yes,height=480,width=640,left=150,top=120");
}
function opwin(picid)
{
  window.open(MAIN_SITE_URL+"showpic.php?pic_id="+picid ,picid,"location=0,toolbar=no,scrollbars=yes,height=440,width=440,left=150,top=120");
}

function opwin1(car_id,member_id)
{
 window.open(MAIN_SITE_URL+"showmsg.php?car_id="+car_id+"&member_id="+member_id,car_id,"location=0,toolbar=no,scrollbars=yes,height=450,width=650,left=150,top=120");
}

function opwin2(car_id)
{
 window.open(MAIN_SITE_URL+"tell_a_friend.php?car_id="+car_id,car_id,"location=0,toolbar=no,scrollbars=yes,height=350,width=550,left=150,top=120");
}

function opwin_physical_view(car_id)
{
 window.open(MAIN_SITE_URL+"physical_view.php?car_id="+car_id,"physical_view","location=0,toolbar=no,scrollbars=yes,height=350,width=550,left=150,top=120");
}

function opwin_price_watch(car_id)
{
 window.open(MAIN_SITE_URL+"price_watch.php?car_id="+car_id,"physical_view","location=0,toolbar=no,scrollbars=yes,height=350,width=550,left=150,top=120");
}

var xmlHttp;

function win_pic(catid,carid)
{
/* changing of td class*/
if(catid==1)
{
    //alert(catid);
    document.getElementById("top_left").innerHTML='<img src="images/details_box_top_left_black.gif" alt="" width="6" height="31" />';
    document.getElementById("td1").className='detail_txt41';
    document.getElementById("td2").className='detail_txt4';
    document.getElementById("td3").className='detail_txt4';


}
else if(catid==2)
{
    //alert(catid);
    document.getElementById("top_left").innerHTML='<img src="images/details_box_top_left.jpg" alt="" width="6" height="31" />';
    document.getElementById("td1").className='detail_txt4';
    document.getElementById("td2").className='detail_txt41';
    document.getElementById("td3").className='detail_txt4';
}
else if(catid==3)
{
    //alert(catid);
    document.getElementById("top_left").innerHTML='<img src="images/details_box_top_left.jpg" alt="" width="6" height="31" />';
    document.getElementById("td1").className='detail_txt4';
    document.getElementById("td2").className='detail_txt4';
    document.getElementById("td3").className='detail_txt41';
}
/* ending of changing of td class*/

xmlHttp=GetXmlHttpObject();
if (xmlHttp==null)
  {
  alert ("Your browser does not support AJAX!");
  return;
  }
var url="get_pic.php";
url=url+"?catid="+catid+"&carid="+carid;
url=url+"&sid="+Math.random();
xmlHttp.onreadystatechange=stateChanged1;
xmlHttp.open("GET",url,true);
xmlHttp.send(null);
}

function stateChanged1()
{
if (xmlHttp.readyState==4)
{
document.getElementById("div_pic").innerHTML=xmlHttp.responseText;
}
}

function GetXmlHttpObject()
{
var xmlHttp=null;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
return xmlHttp;
}
