function popitup(url)
{
	newwindow=window.open(url,'name','height=800,width=700,scrollbars=yes,resizable=1,menubar=yes');
	if (window.focus) {newwindow.focus();}
	return false;
}
function popitupImage(url)
{
	var naam=document.getElementById('product').src.split('/');

	newwindow=window.open(url + "&naam=" + naam[naam.length - 1] ,'name','height=700,width=600,scrollbars=yes,resizable=1,menubar=yes');
	if (window.focus) {newwindow.focus();}
	return false;
}
