function openwindow(url){
    switch (url){
       case "showhouse": 
       newWindow = window.open("http://www.rte.ie/tv/showhouse_previous/cs/cs_h2_designer.html", "rte-showhouse" ,'width=460,height=440,resizable=yes,scrollbars=yes');
       break;
       case "createaccount": 
       newWindow = window.open("http://www.kevinsharkey.com/shop/create_account.php", "rte-showhouse" ,'width=460,height=440,resizable=yes,scrollbars=yes');
       break;
    }
}
function playmovie(c_id){
    url = 'http://www.kevinsharkey.com/movie.php?c_id='+c_id;
    //alert (url);
     newWindow = window.open(url, c_id ,'width=700,height=600,resizable=yes,scrollbars=yes');
      
}
function swapImage(imgN,imgU){
if (document.images)
document.images[imgN].src=imgU;
}

