myinfo1="<b>W</b>hile trying to dive in to a swiming pool I suffered a Spinal Cord Injury (<b>SCI</b>), which left me paralized from chest to down. That was 26-May-1993. Before that I was Merchant Ship's Officer ";
myinfo2="<p><b>M</b>y wife left me in 1998, now I'm staying with my aged parents and 2 attendents.";
myinfo3="<p><b>A</b>t present, at 43, I am doing my time pass through internet, computers, TV etc. and enjoying my time as much as possible. Because life is precious and I want to taste every bit of it...";
getinfo=myinfo1 + myinfo2 + myinfo3;
onceseen=0;


function info_window(someinfo){
	if(onceseen==0){
	    onceseen=0;
		dcdwindow=window.open("","secondWindow", "alwaysraised=yes, dependent=yes, width=300, height=400, screenX=150, screenY=150, top=100, left=250");
		dcdwindow.document.write("<head><title>Information</title></head>");
		dcdwindow.document.write("<body bgcolor='#dcdcef'>");
		dcdwindow.document.write("<font face=veranda, arial size=2>");
		dcdwindow.document.write(someinfo);
		dcdwindow.document.write("</font>");
		dcdwindow.document.write("<center>");
		dcdwindow.document.write("<form name='form1'>");
		dcdwindow.document.write("<input type='button' name='closebutton' value='Close' onclick='Javascript:opener.onceseen=0;top.close();'>");
		dcdwindow.document.write("</form>");
		dcdwindow.document.write("<img src='images/icons/peacedove.gif'>");
		dcdwindow.document.write("</center>");
		dcdwindow.document.write("</body>");
		dcdwindow.document.form1.closebutton.focus();

		}
	else{
		alert("Pop up is blocked in your browser");
	}

}

