function warnLink() {
	var w = window.open("","_self","status=yes,toolbar=no,menubar=no,location=no");
	var d = w.document;
	w.focus();
	d.body.innerHTML = "";

	docText = 
		'<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">\n' +
		'<html>\n' +
		'<head>\n' +
		'  <title>link to matlab</title>\n'+
		'  <link rel="stylesheet" type="text/css" href="http://visl.technion.ac.il/main_style.css" />\n' +
		'</head>\n' +
		'<body>\n' +
		'  <div id="leftDiv" style="background:white; DISPLAY:inline; FLOAT:left; WIDTH:29px; margin:0px; padding:0px;">\n' +
		'  <img src="http://visl.technion.ac.il/images/side_title_bullet.jpg" style="width:15px; height:15px;" />\n' +
		'  <img src="http://visl.technion.ac.il/images/side_title_projects.jpg" />\n' +
		'  </div>\n' +
		'<div id="rightDiv" style="CLEAR:right; DISPLAY:inline; FLOAT:left; width:550px">\n' +
		'    <p>\n' +
		'      <b>Please note:</b><br />\n' +
		'       <div style="padding-left:20px">The full documentation and source code of this project is available only for internal use of the laboratory.</div></p>\n' + 
 		'    <div style="text-align:center">\n' +
 		'	    <a href="docs/">Click here to view full documentation</a><br /><br />\n' +
 		'		<a href="javascript:window.history.back()">Click here to return to project page</a>\n' +
 		'	 </div>\n' +
		'  </div> \n' + 
		'</body>\n' +
		'</html>\n';
	d.write(docText);
}

