GSM Interface

Hi all,
I am trying to send an sms from my arduino using a gsm modem....if i use hyper terminal,the msg is sent but not through the micon..... :-[

Here is a code that i tried...please let me know if it is right...thanks in advance!

#include <SoftwareSerial.h>

int rxPin = 0;
int txPin = 1;

SoftwareSerial serial=SoftwareSerial(rxPin,txPin);

void setup() {
pinMode(rxPin, INPUT);
pinMode(txPin, OUTPUT);
Serial.begin(9600);
delay(5000);
Serial.print("AT+CMGF=1\r\n");
delay(300);
Serial.print("AT+CMGS=");

Serial.print(34,BYTE);
Serial.print("*********");
Serial.print(34,BYTE);
Serial.println("\r\n");
delay(1500);
Serial.print("Arduino.");
delay(500);
Serial.print(0x1A,BYTE);
}

void loop() {
}

oh forgot to mention i got the gsm module from this site(it is terrible to navigate,so here is the link)
http://nskelectronics.in/gsmgprs_kits.html