cross domain issue

cross domain issue


Hi i am trying to post the data back to a server with the following
data element ...... but not able to post it and getting an error
data1 =
{"id":"1008","country":"us","language":"en","username":"k","password":"k"};
var options1 = {
type: 'POST',
url: "http://www.bluebam.xxx.com/dn?",
        contentType: "application/x-www-form-urlencoded",
        type:"jsonp",
data : data1,
processData: false,
success: function (dat){alert(dat)},
        accepts: {json: "application/json, text/javascript"}
};
jQuery.ajax(options1);
}
error :
uncaught exception: Access to restricted URI denied
(NS_ERROR_DOM_BAD_URI)
Did i miss any thing , i have to post it only as it has password
info .
any sugenstions ?