

function openPopUp(anchor,width,height) {
	var newLink = anchor.getAttribute("href");
	if (!(width > 0)) {
		width = 500;
	}
	if (!(height > 0)) {
		height = 450;
	}
	window.open(newLink,'MyWindow','width=' + width + ',height=' + height + ',scrollbars=1');
}