forked from makerling/osm_website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsync.php
26 lines (17 loc) · 882 Bytes
/
sync.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
/******************************************************************************/
/* Developed by: Ken Sladaritz */
/* Marshall Computer Service */
/* 2660 E End Blvd S, Suite 122 */
/* Marshall, TX 75672 */
/* [email protected] */
/******************************************************************************/
require "config.php";
require "head.php";
echo "
<script language=JavaScript>
window.open('syncChild.php','','fullscreen=1,status=0,toolbar=0,menubar=0,location=0,titlebar=0,scrollbars=1,width='+screen.width+',height='+screen.height);
</script>
";
require "foot.php";
?>