function winCreate( myurl, myname, mywidth, myheight, myresize, myscroll )
{
	xPos = Math.round( ( screen.availWidth  / 2 ) - ( mywidth  / 2 ) - 4 );
	yPos = Math.round( ( screen.availHeight / 2 ) - ( myheight / 2 ) - 16 );

	newWin = window.open( "about:blank", "Studercables", "left=" + xPos + ",top=" + yPos + ",width=" + mywidth + ",height=" + myheight + ",menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no" );
	
	newWin.document.write( "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n" );
	newWin.document.write( "<html>\n" );
	newWin.document.write( "  <head><title>" + myname + "</title>\n</head>\n\n" );
	newWin.document.write( "  <body style=\"margin:0px; background-color:#000000;\">\n" );
	newWin.document.write( "    <a href='JavaScript:close();'><img src='" + myurl + "' width='" + mywidth + "' height='" + myheight + "' alt='" + myname + "' border=\"0\"></a>\n" );
	newWin.document.write( "  </body>\n" );
	newWin.document.write( "</html>" );
	
	newWin.focus();
}

function repSpaces( text )
{
  return text.replace( " ", "_" );
}