function openLink(link,width,height) {
	
	use_href = link.href;
	
	if (width==0 || heigh==0) {
		window.open(link.href);
	} else {
		window.open(link.href,'','width=' + width + 'px, height=' + height + 'px;');
	}
}