|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Designing Mortgage Co. website - form help...
I tinkered with the idea of designing websites for profit and my first paying job is for a friend. I assumed it would be fairly straightforward (they insisted on paying me immediately) but they wanted some features they'd seen on another site and I don't know how to create them. There are some hyperlinked information boxes that center themselves in front of the open page when accessed - sort of like a "target _blank" command but not exactly (better). Here's a link to the example page which uses these:
http://www.penamortgage.com Click the "appraisals" and one of the menu items. And, I need to find out where I can get mortgage calculator package. Argh! I should have solicited a funeral home or something. Any help is greaty appreciated - I'm unemployed and in some deep doo-doo here...... |
|
#2
|
||||
|
||||
|
This is what you want.
To be placed in the <head> tags: Code:
<script type="text/javascript">
function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
</script>
And then you'd use something like this for the link: Code:
<a target="_blank" onclick="NewWindow(this.href,'name','700','400','yes');return false;" href="link.htm">My link</a> |
![]() |
| Viewing: Dev Shed Forums > Web Design > Web Design Help > Designing Mortgage Co. website - form help... |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|