function is_msie() {
  return (navigator.appName == "Microsoft Internet Explorer");
}

function Framing(){
  if (this.document == top.document || top.location.host != this.location.host) {

    document.clear();
    document.open("text/html");

	document.writeln('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">');
	document.writeln('<html>');
	document.writeln('<head>');
	document.writeln('<title>MeyWebDesign - We design your homepage !</title>');
	document.writeln('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">');
	document.writeln('</head>');

	document.writeln('<frameset rows="100,*" cols="*" frameborder="NO" border="0" framespacing="0">');
	document.writeln('  <frameset rows="*" cols="160,*">');
	document.writeln('    <frame src="../frame/corner.htm" name="cornerFrame" scrolling="NO" noresize >');
	document.writeln('    <frame src="../frame/top.htm" name="topFrame" scrolling="NO" noresize >');
	document.writeln('  </frameset>');
	document.writeln('  <frameset rows="*" cols="160,*" framespacing="0" frameborder="NO" border="0">');
	document.writeln('    <frame src="../frame/button.htm" name="leftFrame" scrolling="auto" noresize>');
	document.writeln('    <frame src="'+ top.location.href + '" name="mainFrame">');
	document.writeln('  </frameset>');
	document.writeln('</frameset>');
	document.writeln('<noframes><body>');

	document.writeln('</body></noframes>');
	document.writeln('</html>');


    document.close();
   return true;
  }
return false;
}

function msieFraming() {
  if (is_msie()) {
   if (Framing()) {
     window.setTimeout('top.frames["mainFrame"].location.href = '+ '"'+top.location.href+'";',10);
   }
  }
}

function netscFraming() {
  if (!is_msie()) Framing();
}



function startOnLoading() {

  msieFraming();
  netscFraming();

}





