﻿function popitup(url, width, height) {
	newwindow=window.open(url,'name','width=' + width + ', height=' + height + ', scrollbars=yes, resizable=yes');
	if (window.focus) {newwindow.focus()}
	return false;
}

function previewtoegift(url) {
	newwindow=window.open(url,'TEST','width=520, height=600, scrollbars=yes, resizable=no');
	if (window.focus) {newwindow.focus()}
	return false;
}