- (IBAction)aview :(id)sender {
NSString *ILink = [NSString stringWithString:[webDisplayiPad stringByEvaluatingJavaScriptFromString:@"document.ARSIN.ILink.value"]];
NSString *urlAddress = @"http://www.website.asp?";
urlAddress = [urlAddress stringByAppendingString: ILink];
//Create a URL object.
NSURL *url = [NSURL URLWithString:urlAddress];
//URL Requst Object
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
//Load the request in the UIWebView.
[webDisplayiPad loadRequest:requestObj];