<!--// Functions for help pop ups

<!--// <a href="javascript:popupwin('search-result.php?prod_id=<?php echo $row_rs4['ProdID']; ?>&mem_id=<?php echo $row_rs4['MemID']; ?>')"><?php echo $row_rs4['Company']; ?></a> //-->

function popupwin(prod_id, mem_id)
{
	var URL = 'search-result.php?prod_id='+prod_id+'&mem_id='+mem_id;
	var winw = 600;
	var winh = 450;
	var winl = (screen.width - winw) / 2; // Places the popup in the cetre of the screen,
	var wint = (screen.height - winh) / 2; // vertically and horizontally.
	var winProps = 'width='+winw+',height='+winh+',top='+wint+',left='+winl+',menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no';
	window.open(URL, '', winProps);
}

function winclose ()
{
	window.close();
}
