-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinsert_link.htm
67 lines (59 loc) · 1.79 KB
/
insert_link.htm
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Insert Link</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script language="JavaScript" type="text/javascript">
<!--
function AddLink() {
var oForm = document.linkForm;
//validate form
if (oForm.url.value == '') {
alert('Please enter a url.');
return false;
}
if (oForm.linkText.value == '') {
alert('Please enter link text.');
return false;
}
var html = '<a href="' + document.linkForm.url.value + '" target="' + document.linkForm.linkTarget.options[document.linkForm.linkTarget.selectedIndex].value + '">' + document.linkForm.linkText.value + '</a>';
window.opener.insertHTML(html);
window.close();
return true;
}
//-->
</script>
</head>
<body style="margin: 10px; background: #D3D3D3;">
<form name="linkForm" onSubmit="return AddLink();">
<table cellpadding="4" cellspacing="0" border="0">
<tr><td colspan="2"><span style="font-style: italic; font-size: x-small;"><b>Tip:</b> To insert an email link, start your URL with "mailto:"</span></td></tr>
<tr>
<td align="right">URL:</td>
<td><input name="url" type="text" id="url" size="40"></td>
</tr>
<tr>
<td align="right">Text:</td>
<td><input name="linkText" type="text" id="linkText" size="40"></td>
</tr>
<tr>
<td align="right">Target:</td>
<td align="left">
<select name="linkTarget" id="linkTarget">
<option value="_blank">_blank</option>
<option value="_parent">_parent</option>
<option value="_self" selected>_self</option>
<option value="_top">_top</option>
</select>
</td>
</tr>
<tr>
<td colspan="3" align="center">
<input type="submit" value="Insert Link" />
<input type="button" value="Cancel" onClick="window.close();" />
</td>
</tr>
</table>
</form>
</body>
</html>