// verify open page from another site
// written by Frank Sheffield of SSS Computer Consulting FRS
// www.SSSComputerConsulting.com
// Please leave this header in tact if you use it

var win = null;
function verify(link)

{
var win2
var strFeatures	
		strFeatures ="width=500, height=235 top=200, left=200, resizable=no, toolbar=no, location=no, scrollbars=no, status=no, menubar=no";

   win2=window.open('','null',strFeatures);
   win2.focus();
   win2.document.open();
   win2.document.writeln('<HTML>');
   win2.document.writeln('<HEAD>');
   win2.document.writeln('<link rel=stylesheet type=text/css href=standard.css>');
   win2.document.writeln('<meta http-equiv="imagetoolbar" content="no">');
   win2.document.writeln('<TITLE>Open New Site Yes or No</TITLE>');
   win2.document.writeln('<script type="text/javascript">')
   win2.document.writeln('function open_win()') 
   win2.document.writeln('{')
   win2.document.write('window.open("')
   win2.document.write(link)
   win2.document.write('")');
   win2.document.writeln('}')
   win2.document.writeln('</script>')
   win2.document.writeln('</HEAD>');
   win2.document.writeln('<BODY topmargin="0" leftmargin="0" bgcolor="#F1F5F9" class="std_page">')
   win2.document.writeln('<center>')
   win2.document.writeln('<table border="0">')
   win2.document.writeln('<tr>')
   win2.document.writeln('<td width="80px" align="center" valign="top">')
   win2.document.writeln('<br><img src="images/question.gif" border="0">')
   win2.document.writeln('</td>')
   win2.document.writeln('<td width="420px" valign="top" class="std_page">')
   win2.document.writeln('<br>')
   win2.document.writeln('You are about leave MickMitrovic.com.')
   win2.document.writeln('<p>')   
   win2.document.writeln('Mick Mitrovic and/or Canaccord Capital are not responsible for')
   win2.document.writeln('<br>')
   win2.document.writeln('information that you provide or that may be gathered at a linked')
   win2.document.writeln('<br>')
   win2.document.writeln('site, or for the content or privacy policy of any such site.')
   win2.document.writeln('<p>')   
   win2.document.writeln('Do you wish to continue?')
   win2.document.write('<p>')
   win2.document.write('<center>')
   win2.document.write('<input type="button" value="OK" onClick="open_win(); self.close(); " >')
   win2.document.write(' &nbsp; &nbsp; ')
   win2.document.write('<input type="button" value="Cancel" onClick="self.close();"')
   win2.document.writeln('</center>')   
   win2.document.writeln('</td>')
   win2.document.writeln('</tr>')
   win2.document.writeln('</table>')
   win2.document.writeln('</center>') 
   win2.document.writeln('</BODY>');
   win2.document.writeln('</HTML>');
   win2.document.close();
   }
// end of verify open page from another site

 








