﻿/*
function redirect(url) {

    if (Request.QueryString("p").Item(1)) {
        p = Request.QueryString("p").Item(1);
    }
    else {
        p = '1 ';
    }

    if (url) {

        if (p == 'null') {
            document.location = url + '&p=1';
        }
        else if (p.length == 0) {

            document.location = url + '&p=1';
        }
        else {
            document.location = url + '&p=' + Request.QueryString("p");
        }
    }
}
*/

function DropDown(){

var taal = $("select").val();
window.location = "/"+ taal +"/1/index.html";

}

