function EnlaceDirectoSoftware()
{
var ENLACE = document.formtodoelsoftware.selectsoftware.options[document.formtodoelsoftware.selectsoftware.selectedIndex].value
WIN = open(ENLACE,'_self')     
}
function EnlaceDirectoHardware()
{
var ENLACE = document.formtodoelhardware.selecthardware.options[document.formtodoelhardware.selecthardware.selectedIndex].value
WIN = open(ENLACE,'_self')     
}
function EnlaceDirectoFabricantes()
{
var ENLACE = document.formtodoslosfabricantes.selectfabricante.options[document.formtodoslosfabricantes.selectfabricante.selectedIndex].value
WIN = open(ENLACE,'_self')     
}
function CategoryLinkHandler()
{
var URL = document.categorypulldown.categoryid.options[document.categorypulldown.categoryid.selectedIndex].value
WIN = open(URL,'_self')     
}
function popupwindow (url, w, h, name, scrolls)
{
var winopts = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=' + scrolls + ',resizable=no,width=' + w + ',height=' + h;
remote = window.open(url,name,winopts);
}
function openPictureWindow_Fever(imageName,imageWidth,imageHeight,alt,posLeft,posTop)
{
WindowHeight = parseInt(imageHeight);
if (WindowHeight > 580)
{
WindowWidth = parseInt(imageWidth) + 20 ;
WindowHeight = 580;
newWindow = window.open('','newWindow','width='+WindowWidth+',height='+WindowHeight+',left='+posLeft+',top='+posTop+',menubar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no');
}
else
{
WindowWidth = parseInt(imageWidth);
newWindow = window.open('','newWindow','width='+WindowWidth+',height='+WindowHeight+',left='+posLeft+',top='+posTop+',menubar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no');
}
newWindow.document.open();
newWindow.document.write('<html><title>'+alt+'</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">');
newWindow.document.write('<img src='+imageName+' width='+imageWidth+' height='+imageHeight+' alt='+alt+'>');
newWindow.document.write('</body></html>');
newWindow.document.close();
newWindow.focus();
}