Below is my code. The problem is on the 'javascript:ViewPage(article_1.html)'; How to code the quote inside the ViewPage function since im using the
echo "....." ;
<?
echo "
<script language='javascript'>
function ViewPage(url)
{ OpenWin = this.open(url, 'CtrlWindow', 'toolbar=yes,menubar=yes,location=no,scrollbars=yes,resizable=yes');
}
</script>
<tr><td><a href='javascript:ViewPage(article_1.html)';>Article1</a></td><tr>
";
?>
it should be
<a href="javascript:ViewPage('article_1.html')";>Article1</a>