var n = "info2";
var d = "ionaca";
var d2 = "com";
function email(emaild) {
if (document.write)
  {
  document.write(emaild);
  }
}


function popWindow(thefile)
{ var popWindow = window.open(thefile, 'popWindow', 'toolbar=no,width=800,height=400,directories=no,status=no,scrollbars=yes,resizable=yes,menubar=no');
browserName = navigator.appName;
if (browserName == "Netscape")
{ popWindow.focus();
}
}


function delsend() {
if (document.delform.delcheck.checked)  {
document[delform.dellist.options[delform.dellist.selectedIndex].value].submit();
} else {
alert('Please read the Ionaca terms and conditions and then click on the checkbox if you accept them.')
}
}


function delsendUKS() {
if (document.delform.delcheck.checked)  {
document.delUKS.submit();
} else {
alert('Please read the Ionaca terms and conditions and then click on the checkbox if you accept them.')
}
}


function delsendUKL() {
if (document.delform.delcheck.checked)  {
document.delUKL.submit();
} else {
alert('Please read the Ionaca terms and conditions and then click on the checkbox if you accept them.')
}
}


<!-- RANDOM IMAGE ROTATOR by Robert Bu
var interval = 2.5; // delay between rotating images (in seconds)
var random_display = 0; // 0 = no, 1 = yes
interval *= 1000;

var image_index = 0;
image_list = new Array();
image_list[image_index++] = new imageItem("http://transfineart.com/alexhamilton/seventyfiveforiv/seventyfiveforiv_t.jpg");
image_list[image_index++] = new imageItem("http://transfineart.com/alexhamilton/bombphoons/bombphoons_t.jpg");
image_list[image_index++] = new imageItem("http://transfineart.com/alexhamilton/slinkysue/slinkysue_t.jpg");
image_list[image_index++] = new imageItem("http://transfineart.com/ronaldwong/typhoonimminent/typhoonimminent_t.jpg");
image_list[image_index++] = new imageItem("http://transfineart.com/alexhamilton/firstoftheheavies/firstoftheheavies_t.jpg");
image_list[image_index++] = new imageItem("http://transfineart.com/chrisfrench/afarewelltoheathrow/afarewelltoheathrow_t.jpg");
image_list[image_index++] = new imageItem("http://transfineart.com/ronaldwong/tornadoalley/tornadoalley_t.jpg");
image_list[image_index++] = new imageItem("http://transfineart.com/alexhamilton/sunlitsilence/sunlitsilence_t.jpg");
image_list[image_index++] = new imageItem("http://transfineart.com/alexhamilton/scamptonsteel/scamptonsteel_t.jpg");
image_list[image_index++] = new imageItem("http://transfineart.com/alexhamilton/lowflyingbrick/lowflyingbrick_t.jpg");
var number_of_image = image_list.length;
function imageItem(image_location) {
this.image_item = new Image();
this.image_item.src = image_location;
}
function get_ImageItemLocation(imageObj) {
return(imageObj.image_item.src)
}
function generate(x, y) {
var range = y - x + 1;
return Math.floor(Math.random() * range) + x;
}
function getNextImage() {
if (random_display) {
image_index = generate(0, number_of_image-1);
}
else {
image_index = (image_index+1) % number_of_image;
}
var new_image = get_ImageItemLocation(image_list[image_index]);
return(new_image);
}
function rotateImage(place) {
var new_image = getNextImage();
document[place].src = new_image;
var recur_call = "rotateImage('"+place+"')";
setTimeout(recur_call, interval);
}