To use the popup window, add this code to the <head> section of your page (the width and height can be adjusted after you decide on your font size):
<SCRIPT language="JavaScript">
<!--
function newWin(symbol)
	{
	window.open(symbol,"",'width=480,height=160,left=100,screenX=100,top=50,screenY=50,scrollbars');
	}
//-->
</SCRIPT>

To use a link or button to trigger the popup, use this code somewhere on the same page:

<a href="javascript:newWin('http://www.scv.org/remoteNews.php?size=1&mode=J&bcolor=ffff00')">Click here</a>

To cause the popup to load automatically when the page loads (instead of using a link), add this code to the <body> tag:

onLoad="javascript:newWin('http://www.scv.org/remoteNews.php?size=1&mode=J&bcolor=ffff00')"

... so the <body> tag might look something like this:

<body bgcolor="#FFFFFF" onLoad="javascript:newWin('http://www.scv.org/remoteNews.php?size=1&mode=J&bcolor=ffff00')">

To make the font larger, change size=1 to size=2

Do not allow any spaces to creep into the link.


To dynamically paste the headlines into a PHP page, add this code where you want the links to appear:

<center>
<?php
include ("http://www.scv.org/remoteNews.php?size=1&mode=P&bcolor=ffff00");
?>
</center>

To set the background color to white, just change this part of the code: &bcolor=ffff00 to &bcolor=ffffff

To set the background color to any other color, look up the hex value of the color (6 characters), and replace the ffff00 with the hex value

To make the font larger, change size=1 to size=2

Do not allow any spaces to creep into the link.


To change an HTML page to a PHP page, simply rename it with the extension ".php".

If you are not sure if you have PHP installed on the server, copy the following code into a blank page, name it with a .php extension. upload it, and display it in a browser.

<?php
phpinfo();
?>