
function poptastic(url)
{
	var newwindow;
	newwindow=window.open(url,'name','height=570,width=470,location=0');
	if (window.focus) {newwindow.focus()}
}

function colorHelp()
{
  var generator=window.open('','name','height=400,width=500');
  
  generator.document.write('<html><head><title>Popup</title>');
  generator.document.write('<link rel="stylesheet" href="mainformat.css">');
  generator.document.write('</head><body class="popUp">');
  generator.document.write('<font class="headline1"><b>Main</b></font>');
  generator.document.write('<font class="headline2"><b> Color</b></font>');
  generator.document.write('<br />The main color will cover platforms and boxes, and will be the primary color of your product.');
  generator.document.write('<br /><font class="headline1"><b>Accent</b></font>');
  generator.document.write('<font class="headline2"><b> Color</b></font>');
  generator.document.write('<br />The accent color will cover the posts, and will complement the main color.');
  generator.document.write('<p><a href="javascript:self.close()">Close Window</a></p>');
  generator.document.write('</body></html>');
  generator.document.close();
}