// JavaScript Document
var url=location.href.toLowerCase();
    var orgURL;    
    if(url.match("dreamkeralatourism.com") && !(url.match("www")))
    {    
        var strArray=url.split("//");
        orgURL=strArray[0]+"//www."+strArray[1];        
        window.location=orgURL.toLowerCase();
    } 
    if (url != location.href) 
    {       
        window.location=url;
    }      
