﻿function copy() {
var x = screen.width;
var y = screen.height;
var xOffset = (x - 670)/2; 
var yOffset = (y - 670)/2;
window.open('copy.htm','Copyright','status=no,scrollbars=yes,menubar=0,directory=no,toolbar=0,resizable=no,width=670,height=670,screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+'');
}

