BT shield Arduino don´t works

Hello everyone,

I have bought an Arduino Bluetooth stackable shield (http://www.aliexpress.com/fm-store/312788/210950222-486663202/Free-shipping-Arduino-Stackable-Bluetooth-Shield.html) on eBay but it seems a serial communication between BT module with Arduino and PC can´t be processed.
I´ve uploaded a print screen of computer settings (ImageShack - Best place for all of your image hosting and image sharing needs). I use program Tera Term to communication PC-BT module, I´ve tried a Tank Control program also but it looks like the programs can´t connect to BT module. Diode D1 on module blinks, D2 lights constantly.
Here is Arduino program which I´ve wrote (version 0022):

char val;

void setup() {
pinMode(ledpin = 13, OUTPUT);
Serial.begin(9600);
}

void loop() {
if( Serial.available() )
{;}
val = Serial.read();

if( val == '0' ) {
digitalWrite(ledpin, LOW);
delay(500);
Serial.println("LED off");
}

if( val == '1' ) {
digitalWrite(ledpin = 13, HIGH);
delay(500);
Serial.println("LED on");
}

}