function CreateFrames(URL1,URL2)
{	if (window.name != "b" && window.name != "menu")

	{	document.write("<frameset rows='12%,88%'  frameborder='0' border='0' framespacing='0'>");
		document.write("<frame name='b' marginwidth='0' scrolling='no' src='"+URL1+"?'>");
		document.write("<frame name='menu' marginwidth='0' scrolling='no' src='"+URL2+"?'>");
		document.write("</frameset>");
	}
}
 
function CreateFramesN(URL1,URL2)
{	if (window.name != "b" && window.name != "menu")

	{	document.write("<frameset rows='12%,88%'  frameborder='0' border='0' framespacing='0'>");
		document.write("<frame name='b' marginwidth='0' scrolling='no' src='"+URL1+"?'>");
		document.write("<frame name='menu' marginwidth='0' scrolling='no' src='"+URL2+"?'>");
		document.write("</frameset>");
	}
}
  
  
  
  
