﻿function LoadProduct(IDnode, IDlanguage)
{
	var product = new Product(IDnode, IDlanguage);
};

function Search()
{
	var find = document.forms[0].find;
	if(find != null && find.value.split(' ').join('') != '')
	{
		var text = find.value;
		document.location = 'Catalogue.aspx?s=' + text;
	}	
};

function OpenWindow(pageUrl, width, height)
{
	var init_width = (width)?width:400;
	var init_height = (height)?height:400;
	var init_left = Math.floor((screen.availWidth - init_width)/2);
	var init_top = Math.floor((screen.availHeight - init_height)/2);

	var newWin = window.open(pageUrl,
		'_new',
		'width=' + init_width + ',height=' + init_height + ',top=' + init_top + ',left=' + init_left + ',scrollbars=no,resizable=yes,status=no,location=no,toolbar=no');
};
