function addto_cart(TheUrl,resourceid,channelid)
{
	document.MyForm.resourceid.value=resourceid;
	document.MyForm.channelid.value=channelid;
	document.MyForm.action=TheUrl;
	document.MyForm.submit();
}
function addto_cartTow(TheUrl,resourceid,channelid)
{
	document.MyFormTow.resourceid.value=resourceid;
	document.MyFormTow.channelid.value=channelid;
	document.MyFormTow.action=TheUrl;
	document.MyFormTow.submit();
}
function MySeachKeyWords(TheUrl,TheTitle)
{
	document.MySeachForm.searchStyle.value=TheTitle;
	document.MySeachForm.action=TheUrl;
	document.MySeachForm.submit();
}
document.write('<form method="post" name="MyForm">');
document.write('<input name="resourceid" type="hidden" id="resourceid">');
document.write('<input name="channelid" type="hidden" id="channelid">');	
document.write('</form>');
document.write('<form method="post" name="MyFormTow" target="_blank">');
document.write('<input name="resourceid" type="hidden" id="resourceid">');
document.write('<input name="channelid" type="hidden" id="channelid">');	
document.write('</form>');
document.write('<form method="post" name="MySeachForm" target="_blank">');
document.write('<input name="searchStyle" type="hidden" class="btuBorder" id="searchStyle">');
document.write('<input name="searchSelect" type="hidden" id="searchSelect" value="||0">');		
document.write('</form>');